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. I was wondering if you ever thought of changing the page 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 one or 2 images.
    Maybe you could space it out better?

  2. Have you ever thought about including a little bit more than just your articles?
    I mean, what you say is valuable and all. But think of if
    you added some great pictures or videos to give your
    posts more, “pop”! Your content is excellent but with images and
    clips, this site could certainly be one of the most
    beneficial in its niche. Very good blog!

  3. Its such as you learn my thoughts! You seem to know so much approximately this,
    like you wrote the e book in it or something. I believe that you simply could do
    with a few percent to drive the message home
    a little bit, but instead of that, this is excellent blog.
    A fantastic read. I will certainly be back.

  4. Hi, i read your blog occasionally and i own a
    similar one and i was just curious if you get
    a lot of spam responses? If so how do you stop it, any plugin or anything you can suggest?
    I get so much lately it’s driving me mad so
    any help is very much appreciated.

  5. I like the helpful info you provide on your articles. I’ll
    bookmark your blog and test once more here frequently.
    I’m relatively certain I will be told a lot of new stuff proper right here!
    Good luck for the next!

  6. Вилочные штабелёры могут различаться в зависимости от типа используемого топлива.
    Как и где применяются вилочные штабелёры и как не ошибиться с их выбором?
    Вилочный штабелёр хорошая цена https://sdelaydveri.ru/oborudovanie/preimushhestva-ispolzovaniya-shtabelerov-na-skladax.html
    мостовые;
    стеллажные.

    _____________________________________________
    ампириретиризм

Comments are closed.