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.

48,215 thoughts on “Contoh Soal Pemrograman – Pola Segitiga Siku-siku

  1. you’re in point of fact a excellent webmaster. The web
    site loading pace is amazing. It kind of feels that you’re doing any unique
    trick. In addition, The contents are masterpiece. you have done
    a wonderful task in this subject!

  2. Today, I went to the beachfront with my kids.

    I found a sea shell and gave it to my 4 year old daughter
    and said “You can hear the ocean if you put this to your ear.” She
    put the shell to her ear and screamed. There was a
    hermit crab inside and it pinched her ear. She never wants
    to go back! LoL I know this is entirely off topic
    but I had to tell someone!

  3. I do not even know how I stopped up here, but I
    assumed this publish was once good. I do not know who you might
    be but certainly you are going to a well-known blogger if you are not already.
    Cheers!

  4. Great post. I was checking constantly this blog and I am impressed!
    Extremely helpful information particularly the last part 🙂
    I care for such info a lot. I was looking for this particular info for a long time.
    Thank you and best of luck.

  5. Woah! I’m really loving the template/theme of this blog.
    It’s simple, yet effective. A lot of times it’s difficult to get that “perfect balance” between user friendliness and
    visual appeal. I must say that you’ve done a awesome
    job with this. In addition, the blog loads super quick for me on Internet explorer.
    Superb Blog!

  6. Hi, I believe your blog could be having internet browser compatibility
    issues. Whenever I take a look at your website in Safari, it
    looks fine but when opening in IE, it has some overlapping issues.
    I just wanted to provide you with a quick heads up!
    Besides that, wonderful website!

  7. Your mode of describing the whole thing in this piece of writing is truly good,
    all be able to effortlessly know it, Thanks a lot.

  8. I know this if off topic but I’m looking into starting
    my own weblog and was curious what all is required to get
    setup? I’m assuming having a blog like yours would
    cost a pretty penny? I’m not very internet savvy so
    I’m not 100% certain. Any tips or advice would be greatly appreciated.
    Kudos

  9. Hello to all, how is all, I think every one is getting more from this web page, and your views are fastidious for new viewers.

  10. I’ve read several excellent stuff here. Definitely value bookmarking for revisiting.
    I wonder how a lot effort you set to make the sort of wonderful informative website.

  11. Excellent beat ! I wish to apprentice while you amend your website, how could i subscribe for
    a blog web site? The account helped me a acceptable deal.
    I had been a little bit acquainted of this your broadcast provided bright
    clear concept

  12. Its like you read my mind! You seem to know a lot about this, like you wrote the book in it or
    something. I think that you could do with a few pics to drive
    the message home a little bit, but other than that, this is great blog.
    An excellent read. I’ll definitely be back.

  13. Thank you, I have recently been looking for info approximately
    this subject for ages and yours is the greatest I’ve came upon till now.
    But, what concerning the bottom line? Are you
    certain about the source?

  14. Hello 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 browsers and both show the
    same results.

  15. Yesterday, while I was at work, my cousin stole my iphone
    and tested to see if it can survive a twenty five foot drop, just so she can be a youtube sensation. My apple ipad is
    now broken and she has 83 views. I know this is completely off topic but I had to share it with someone!

  16. Hello there! This article couldn’t be written much better!

    Looking at this article reminds me of my previous roommate!
    He continually kept talking about this. I am
    going to send this post to him. Pretty sure
    he will have a great read. Many thanks for sharing!

  17. whoah this blog is excellent i really like reading your posts.
    Keep up the great work! You realize, a lot of persons are looking around for this info, you can aid them greatly.

  18. Hello to all, the contents present at this web site are in fact
    remarkable for people knowledge, well, keep up the nice work fellows.

  19. Hi there, I think your web site could be having browser compatibility issues.

    Whenever I look at your website in Safari, it looks fine
    however, if opening in I.E., it’s got some overlapping issues.
    I just wanted to give you a quick heads up! Besides that, excellent blog!

  20. Hi, I do think this is a great web site. I stumbledupon it 😉 I am going to come back yet again since i
    have saved as a favorite it. Money and freedom is the best way to change, may you be rich and continue to help other people.

  21. Have you ever thought about including a little bit more than just your articles?
    I mean, what you say is important and all. However
    think about if you added some great photos or videos to give your posts more, “pop”!

    Your content is excellent but with images and video clips, this blog could undeniably be one
    of the most beneficial in its niche. Awesome blog!

  22. Hi my loved one! I wish to say that this article
    is amazing, great written and come with approximately all significant
    infos. I’d like to peer extra posts like this .

  23. Appreciating the time and energy you put into
    your site and detailed information you present. It’s awesome to come
    across a blog every once in a while that isn’t the same
    unwanted rehashed information. Wonderful read!
    I’ve saved your site and I’m adding your RSS feeds to
    my Google account.

  24. I have learn a few good stuff here. Definitely price bookmarking for revisiting.
    I surprise how so much effort you set to make this type of
    magnificent informative website.

  25. Heya i am for the first time here. I found this board
    and I find It truly helpful & it helped me out much. I am hoping to give one thing back and aid others
    like you aided me.

  26. Simply wish to say your article is as astonishing.
    The clearness in your post is just nice and i could assume you’re an expert
    on this subject. Fine with your permission let me to grab your RSS feed to keep updated with forthcoming post.
    Thanks a million and please keep up the
    rewarding work.

  27. Hi! I simply would like to offer you a big thumbs up
    for your great information you have got here on this post.
    I will be returning to your web site for more soon.

Comments are closed.