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,220 thoughts on “Contoh Soal Pemrograman – Pola Segitiga Siku-siku

  1. I really like what you guys tend to be up too.
    This sort of clever work and exposure! Keep up the
    wonderful works guys I’ve included you guys to my blogroll.

  2. Hi there, just became aware of your blog through Google, and found that it is truly
    informative. I am going to watch out for brussels.

    I will be grateful if you continue this in future.
    Lots of people will be benefited from your writing. Cheers!

  3. When I originally commented I clicked the “Notify me when new comments are added” checkbox and
    now each time a comment is added I get four e-mails with the same comment.

    Is there any way you can remove me from that service? Thanks
    a lot!

  4. I am extremely inspired with your writing talents and also with the
    layout for your blog. Is this a paid subject or did you modify it yourself?
    Either way stay up the nice high quality writing, it
    is rare to peer a nice blog like this one nowadays..

  5. I relish, cause I found just what I was taking a look for.
    You’ve ended my four day lengthy hunt! God Bless you man. Have a
    great day. Bye

  6. Howdy this is kinda 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 guidance from someone with experience.

    Any help would be greatly appreciated!

  7. Good web site you’ve got here.. It’s difficult to find high-quality writing like yours nowadays.
    I seriously appreciate people like you! Take care!!

  8. Thank you, I have just been looking for information about
    this subject for a long time and yours is the greatest I have discovered till now.

    However, what in regards to the conclusion? Are you certain about the source?

  9. My brother recommended I might like this blog. He was totally right.

    This post actually made my day. You cann’t imagine simply how much time I had spent for this information!
    Thanks!

  10. Hello very cool web site!! Guy .. Beautiful ..
    Superb .. I will bookmark your website and take the feeds also?
    I’m satisfied to seek out numerous helpful info here in the post, we need
    work out more techniques in this regard, thanks
    for sharing. . . . . .

  11. Simply want to say your article is as astounding.
    The clarity for your put up is simply great and i can assume you’re
    an expert in this subject. Fine together with your permission let me
    to grasp your RSS feed to keep updated with approaching post.
    Thank you one million and please carry on the
    rewarding work.

  12. Great blog right here! Also your web site rather a lot up fast!
    What web host are you the usage of? Can I get your associate hyperlink to your host?
    I desire my web site loaded up as fast as yours lol

  13. Very rapidly this site will be famous amid all blogging and site-building visitors, due to it’s pleasant articles or reviews

  14. Excellent way of telling, and fastidious paragraph to take
    data about my presentation subject matter, which i am going to convey in school.

  15. I get pleasure from, result in I found exactly what I used to be
    taking a look for. You have ended my four day long hunt!
    God Bless you man. Have a nice day. Bye

  16. Hi there! I just want to give you a big thumbs up for
    your excellent information you’ve got right here on this post.
    I am returning to your blog for more soon.

  17. I have read so many posts concerning the blogger lovers however this piece of writing is really a nice paragraph, keep it up.

  18. magnificent points altogether, you simply received a new reader.
    What could you suggest about your post that you made some
    days in the past? Any positive?

  19. hello!,I like your writing so so much! proportion we be in contact extra about your post on AOL?
    I require a specialist on this space to unravel my problem.
    Maybe that is you! Looking forward to peer you.

Comments are closed.