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. Hi there, all the time i used to check web site posts here in the early hours in the morning, for the
    reason that i enjoy to learn more and more.

  2. We absolutеly love your blog and find ɑ loot of your
    post’sto be exactly I’m lokking f᧐r. Ⅾoes one offer guest writers to write сontent for yоu?
    І wοuldn’t mind writing а post օr elaborating on a
    number οf the subjects yⲟu write in relation to һere.
    Agɑіn, awesome weblog!

    Review my page … Спіймай мене

  3. I used to be suggested this blog via my cousin. I am not positive whether or not this publish is written by way of him as no one else recognise such particular approximately my difficulty.

    You’re wonderful! Thank you!

  4. After looking over a few of the blog posts on your website, I honestly like your way of blogging.
    I bookmarked it to my bookmark webpage list and will be checking back soon. Please check
    out my website as well and tell me how you feel.

  5. Hey there! This is kind of off topic but I need some guidance from an established blog.
    Is it hard to set up your own blog? I’m not very techincal but I can figure things out pretty fast.
    I’m thinking about creating my own but I’m not sure where to start.
    Do you have any tips or suggestions? Appreciate it

  6. Hi it’s me, I am also visiting this web page daily,
    this site is truly good and the viewers are genuinely sharing nice thoughts.

  7. Hi there everyone, it’s my first pay a quick visit at this site, and article is really fruitful in favor of me, keep up posting these types of content.

Comments are closed.