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. О современных методах лечения алкогольной и наркотической зависимости. Узнайте о:

    наркология

  2. Greetings, I do think your site could be having internet browser compatibility problems.
    When I look at your blog in Safari, it looks
    fine but when opening in Internet Explorer, it’s got
    some overlapping issues. I simply wanted to give you a quick heads
    up! Besides that, excellent blog!

  3. Heya i am for the primary time here. I came across this board and I find It truly
    useful & it helped me out a lot. I hope to give
    one thing back and aid others like you helped me.

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

  5. Helpful info. Lucky me I found your web site by accident, and I’m stunned why this
    coincidence did not came about earlier! I bookmarked it.

  6. It’s going to be ending of mine day, but before ending I am
    reading this impressive post to increase my know-how.

  7. 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 can do with a few pics to drive the
    message home a little bit, but instead of that, this is great blog.
    A great read. I will certainly be back.

  8. If some one wishes expert view concerning running a blog then i recommend him/her to pay a visit this weblog, Keep up the good work.

  9. you’re truly a just right webmaster. The web site loading pace is amazing.

    It sort of feels that you’re doing any distinctive trick.
    Also, The contents are masterwork. you have performed a magnificent task in this matter!

  10. О современных методах лечения алкогольной и наркотической зависимости. Узнайте о:

    наркология

  11. I was curious if you ever considered changing the layout of your site?
    Its very well written; I love what youve got to say.
    But maybe you could a little more in the way of content so
    people could connect with it better. Youve got an awful
    lot of text for only having 1 or two images. Maybe you could space it out better?

  12. You have made some good points there. I looked on the net for additional information about the issue and found most individuals will go along
    with your views on this web site.

Comments are closed.