Contoh Soal Pemrograman – Pola Segitiga Siku-siku

Pemrograman Python

Pada posting sebelumnya sudah dicontohkan soal pemrograman dalam bahasa Python. Kali ini, akan ditampilkan lagi contoh berikutnya.

Soal:
Buatlah program Python untuk menampilkan pola segitiga siku-siku menggunakan forin.

Jawab:

Pola 1

*  *  *  *  *  *
*  *  *  *  *
*  *  *  *
*  *  *
*  *
*

Jawab:

siku_siku_1.py
tinggi = 6

for baris in range(0, tinggi):
    for kolom in range(0, tinggi-baris):
        print("*", end=" ")
    print("")

 

Pola 2

*
*  *
*  *  *
*  *  *  *
*  *  *  *  *
*  *  *  *  *  *

Jawab:

siku_siku_2.py
tinggi = 6

for baris in range(0, tinggi):
    for kolom in range(0, baris+1):
        print("*", end=" ")
    print("")

Pola 3

               *
            *  *
         *  *  *
      *  *  *  *
   *  *  *  *  *
*  *  *  *  *  *

Jawab:

siku_siku_3.py
tinggi = 6

for baris in range(0, tinggi):
    for kolom in range(1, tinggi-baris):
        print(" ", end=" ")
    for bintang in range(0, baris+1):
        print("*", end=" ")
    print("")

Demikian contoh pola segitiga dalam pemrograman Python. Semoga bermanfaat.

17,247 thoughts on “Contoh Soal Pemrograman – Pola Segitiga Siku-siku

  1. I am extremely impressed with your writing skills and also with the
    layout on your weblog. Is this a paid theme or did you customize it yourself?
    Anyway keep up the nice quality writing, it is rare to
    see a nice blog like this one today.

  2. I don’t even know how I ended up here, but I thought this post was good.
    I don’t know who you are but certainly you are going to
    a famous blogger if you are not already 😉 Cheers!

  3. I’ve learn a few good stuff here. Certainly worth bookmarking
    for revisiting. I wonder how so much attempt you put
    to make this kind of great informative site.

  4. An intriguing discussion is definitely worth comment.
    I do believe that you need to publish more about this subject, it may not be a taboo subject
    but generally people do not discuss these topics. To the next!
    Best wishes!!

  5. I do not even know how I stopped up right here, however I believed this publish was once great.
    I don’t recognize who you’re however definitely you’re going
    to a well-known blogger if you aren’t already.
    Cheers!

  6. I like the helpful information you provide in your articles.
    I’ll bookmark your weblog and check again here regularly.
    I’m quite sure I’ll learn a lot of new stuff right here!
    Good luck for the next!

  7. It’s a shame you don’t have a donate button! I’d certainly donate to this excellent
    blog! I suppose for now i’ll settle for bookmarking and adding your RSS feed to my Google account.
    I look forward to fresh updates and will talk about this site with my Facebook group.

    Talk soon!

  8. Currently it appears like Expression Engine is the best blogging platform out there right now.

    (from what I’ve read) Is that what you’re using on your blog?

  9. important review. On top of that visit this specific site that is definitely played
    out agen slot deposit pulsa. This particular web-site has received standing received from slot pulsa tanpa potongan gambling house women and men in Dalam
    negri. Right now there are generally a lot of suitable promos should
    you join at present.

  10. Hi there, this weekend is good designed for me,
    for the reason that this point in time i am reading this impressive informative
    article here at my residence.

  11. exciting review. In addition to that visit such type of site to try out
    slot pulsa. This page has received endorsement from agen slot deposit pulsa bets competition in Dalam negeri.
    Right now there tend to be numerous charming promos just in case you join today.

  12. We are a bunch of volunteers and opening a new scheme in our community.
    Your web site offered us with valuable information to work on. You’ve performed
    an impressive task and our whole group will likely be grateful
    to you.

  13. Greetings, I believe your web site could possibly be having internet browser compatibility problems.

    Whenever I look at your web site in Safari, it looks fine however
    when opening in I.E., it’s got some overlapping issues.
    I just wanted to provide you with a quick heads up! Other than that, wonderful
    blog!

  14. I’ve been browsing on-line more than three hours these days, yet I never found any interesting article like yours.
    It’s lovely value sufficient for me. Personally, if all webmasters
    and bloggers made good content as you probably did, the net will be much
    more helpful than ever before.

  15. My partner and I stumbled over here coming from a different web
    address and thought I should check things out. I like what
    I see so i am just following you. Look forward to going over your web page yet again.

  16. If some one desires to be updated with latest technologies
    afterward he must be pay a quick visit this site and be up to date all the time.

  17. I’m amazed, I have to admit. Rarely do I come across a blog that’s
    both educative and interesting, and without a doubt,
    you’ve hit the nail on the head. The issue is something that not enough folks are speaking intelligently about.
    I am very happy that I stumbled across this
    in my hunt for something relating to this.

  18. Heya this is somewhat of off topic but I was wanting to
    know if blogs use WYSIWYG editors or if you have to manually code with HTML.
    I’m starting a blog soon but have no coding know-how so I wanted to get advice from someone with experience.
    Any help would be greatly appreciated!

  19. I like the helpful information you supply on your articles.
    I will bookmark your blog and take a look at once more here frequently.
    I am fairly certain I will learn many new stuff proper right here!

    Good luck for the following!

  20. Its like you read my mind! You appear to grasp a lot about this, like you
    wrote the guide in it or something. I believe that you simply could do with some p.c.

    to force the message home a little bit, however other
    than that, this is fantastic blog. An excellent read.
    I’ll certainly be back.

  21. Hi just wanted to give you a brief heads up and let you know a
    few of the images aren’t loading properly. I’m
    not sure why but I think its a linking issue.
    I’ve tried it in two different web browsers and both show the same outcome.

  22. The other day, while I was at work, my sister stole my iPad and tested to see if it can survive a twenty five foot drop, just
    so she can be a youtube sensation. My iPad is now broken and
    she has 83 views. I know this is completely off topic but I had to share it with someone!

Comments are closed.