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

  1. Hey There. I found your blog using msn. This is an extremely well
    written article. I’ll make sure to bookmark
    it and return to read more of your useful info. Thanks for the post.
    I will definitely return.

  2. Its like you read my mind! You appear to know so much about
    this, like you wrote the book in it or something. I think that you could do
    with some pics to drive the message home a bit, but other than that, this is
    wonderful blog. An excellent read. I will certainly be back.

  3. Ahaa, its good conversation on the topic of this paragraph at this place at this web site,
    I have read all that, so at this time me also commenting at this place.

  4. This is very interesting, You are a very skilled blogger.
    I have joined your rss feed and look forward to seeking more of
    your magnificent post. Also, I have shared your web site in my social networks!

  5. Hi! I just wanted to ask if you ever have any
    problems with hackers? My last blog (wordpress) was hacked and I ended up losing
    months of hard work due to no backup. Do you have any methods
    to prevent hackers?

  6. Excellent blog right here! Additionally your site rather a lot up fast!

    What web host are you using? Can I am getting your associate link for your
    host? I wish my site loaded up as quickly as yours lol

  7. Excellent blog here! Also your website loads up very fast!
    What web host are you using? Can I get your affiliate link to your host?
    I wish my website loaded up as fast as yours lol

  8. Greetings! Quick question that’s completely off topic.
    Do you know how to make your site mobile friendly? My weblog looks weird when viewing from my iphone4.
    I’m trying to find a template or plugin that might be able to
    fix this problem. If you have any recommendations,
    please share. Thanks!

  9. Simply wish to say your article is as astounding.
    The clearness in your post is simply excellent and i can assume you are an expert on this
    subject. Well with your permission allow me to grab
    your feed to keep updated with forthcoming post. Thanks a million and please keep up the gratifying work.

  10. I’m not sure where you’re getting your information, but good topic.
    I needs to spend some time learning much more or understanding more.
    Thanks for great info I was looking for this info for my mission.

  11. I’ll immediately seize your rss feed as I can not
    in finding your e-mail subscription hyperlink or newsletter
    service. Do you have any? Please allow me recognize
    so that I may just subscribe. Thanks.

  12. always i used to read smaller posts which as well clear their motive, and that is also happening with this piece of writing which I am reading at this place.

  13. After looking over a number of the blog posts
    on your blog, I seriously like your way of
    blogging. I saved it to my bookmark webpage list and will be checking back soon. Please
    check out my website as well and tell me your opinion.

  14. I like what you guys are usually up too. This sort of clever work and exposure!
    Keep up the wonderful works guys I’ve incorporated you guys to my personal blogroll.

  15. Thanks a bunch for sharing this with all of us you actually recognize what you’re speaking
    about! Bookmarked. Kindly additionally consult
    with my website =). We can have a link alternate arrangement among us

  16. Hi there! Someone in my Myspace group shared this website with
    us so I came to look it over. I’m definitely loving the information. I’m bookmarking and will
    be tweeting this to my followers! Wonderful blog and brilliant design and style.

Comments are closed.