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. each time i used to read smaller posts that also clear their motive, and that is
    also happening with this article which I am reading at this time.

  2. Make money trading opions.
    The minimum deposit is 50$.
    Learn how to trade correctly. How to earn from $50 to $5000 a day.
    The more you earn, the more profit we get.

  3. Официальный сайт Вавада

    Вообще тут в Вавада много моих знакомых играет, вот и я недавно сподобился. Честно, если бы не демо режим, так бы и не решился. А так очень доволен остался. Это конечно нечто! Просто нету слов. Да и знакомые хвалятся, что иной раз очень неплохо тут деньги подымают, так что игра похоже стоит свеч

  4. Greetings from Florida! I’m bored at work so I decided to check out your
    blog on my iphone during lunch break. I love the knowledge you provide here and can’t wait to take a look
    when I get home. I’m shocked at how quick your blog loaded
    on my mobile .. I’m not even using WIFI, just 3G ..
    Anyhow, fantastic site!

  5. I for all time emailed this webpage post page to
    all my contacts, for the reason that if like to read it then my
    contacts will too.

Comments are closed.