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 do consider all of the ideas you have introduced in your post.

    They’re very convincing and can certainly work. Nonetheless, the posts are very quick for novices.

    May just you please lengthen them a little from subsequent time?
    Thanks for the post.

  2. After I initially commented I seem to have
    clicked on the -Notify me when new comments are added- checkbox and now each time
    a comment is added I receive 4 emails with the exact same
    comment. Is there a means you are able to remove me from that service?
    Appreciate it!

  3. Hello just wanted to give you a quick 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.

  4. Just want to say your article is as astounding. The clearness
    in your post is just excellent and i can assume you are an expert on this subject.
    Well with your permission allow me to grab your feed to keep up
    to date with forthcoming post. Thanks a million and please continue the rewarding
    work.

  5. Fantastic website. Lots of useful info here. I am sending
    it to some friends ans additionally sharing in delicious.
    And of course, thanks on your effort!

  6. Hi, I do think this is an excellent web site. I stumbledupon it πŸ˜‰ I’m going to return yet again since I bookmarked it.
    Money and freedom is the best way to change, may you be rich and continue to help other
    people.

  7. I think this is one of the most important info for me.
    And i am glad reading your article. But want to remark on few general things, The web site style is ideal, the
    articles is really nice : D. Good job, cheers

Comments are closed.