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. Its like you learn my mind! You appear to
    grasp so much approximately this, like you wrote the guide in it or something.
    I think that you can do with some p.c. to force the message home a little bit, but other than that, that is great blog.
    A fantastic read. I will certainly be back.

  2. I like the helpful info you provide in your articles. I’ll bookmark your weblog and check again here regularly.
    I am quite certain I’ll learn a lot of new stuff right here!
    Best of luck for the next!

  3. An impressive share! I have just forwarded this
    onto a coworker who had been conducting a little homework on this.
    And he actually bought me lunch because I discovered
    it for him… lol. So let me reword this…. Thank YOU for the meal!!

    But yeah, thanx for spending time to talk about this issue here on your web site.

  4. Hi! I realize this is somewhat off-topic however I needed to ask.
    Does building a well-established website like yours require a large amount of work?
    I’m brand new to writing a blog but I do write in my diary every day.
    I’d like to start a blog so I can share my own experience and thoughts online.
    Please let me know if you have any recommendations or tips for new aspiring
    blog owners. Appreciate it!

  5. Does your website have a contact page? I’m having a
    tough time locating it but, I’d like to shoot you an email.

    I’ve got some ideas for your blog you might be interested in hearing.
    Either way, great blog and I look forward to seeing it grow over time.

  6. This is a good tip particularly to those fresh
    to the blogosphere. Brief but very precise information…
    Many thanks for sharing this one. A must read article!

  7. Hey There. I discovered your blog the use of msn. That is a very
    smartly written article. I’ll be sure to bookmark it and come back to learn more of your helpful info.
    Thanks for the post. I will definitely return.

Comments are closed.