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. interesting review. Additionally visit our own site to use slot online pulsa.
    This amazing site has received likability from the comfort of judi slot online playing gamers in Dalam negeri.

    Generally there tend to be many head turning promos inside event you join currently.

  2. appealing review. Likewise visit all of our site to try out slot deposit pulsa.
    The following url has received endorsement through video slot machine gambling members in Indonesia.

    Truth be told there tend to be numerous astounding promos just in case you join now.

  3. I like the valuable info you provide in your articles.
    I’ll bookmark your blog and check again here regularly.
    I’m quite sure I will learn plenty of new stuff right here!
    Best of luck for the next!

  4. Hello! I know this is kinda off topic however I’d figured I’d
    ask. Would you be interested in exchanging links or maybe guest authoring
    a blog post or vice-versa? My blog addresses a lot of the same topics as yours and I believe we could greatly benefit from each other.

    If you happen to be interested feel free to shoot me an email.
    I look forward to hearing from you! Excellent blog by the way!

  5. My relatives every time say that I am wasting my time here at web, except I know I am getting familiarity all the time by reading such fastidious articles.

  6. lovely review. Simultaneously visit desired site to be able to
    game slot. The following web site has received acknowledgement via slot machine video games patients in Dalam negri.
    Presently there are actually a great deal of interesting promos in the event you join now.

  7. Хорошая цена на погрузчик
    https://vilochnyi.ru/kontakty/vilochnye-pogruzchiki-v-kamyshine/
    5. У вас правильно обучены операторы?
    Как купить погрузчик вилочный, который оптимально подходит под ваши нужды, удовлетворяет вас по цене? Очень просто – отправьте заявку с сайта – мы отвечаем действительно быстро!
    Вилочные погрузчики являются неотъемлемой частью системы обработки и хранения материалов и облегчают перемещение товаров, повышая эффективность и производительность установки.
    Каталог вилочных погрузчиков
    Если вы не знаете точные ответы на эти вопросы, вы всегда можете получить бесплатную консультацию у наших специалистов, звоните прямо сейчас или оставьте свой номер, мы вам перезвоним!

    ______________________________________

    далапитривим

  8. important review. Concurrently visit our site to
    achieve slot pulsa online. In which extraordinary internet
    site has received natural beauty from the slot playing people today in Indonesia.
    Right now there are actually a great deal of great promos if perhaps join right now.

  9. Hey there, I think your site might be having browser compatibility issues.

    When I look at your blog in Firefox, it looks fine but
    when opening in Internet Explorer, it has some overlapping.
    I just wanted to give you a quick heads up! Other then that, terrific blog!

  10. Hello this is kind of of off topic but I was wondering if blogs use WYSIWYG editors or if you have to manually code with HTML.
    I’m starting a blog soon but have no coding
    know-how so I wanted to get guidance from someone with experience.
    Any help would be enormously appreciated!

  11. exciting review. Additionally visit the very best site to test out
    situs slot online. Excellent site has received level of popularity via
    video slot machine video gaming challengers in Negara sendiri.
    At this time there are loads of appealing promos if you join at the moment.

  12. Hi there, I do believe your blog might be having browser compatibility issues.
    Whenever I take a look at your site in Safari, it looks fine but when opening in Internet Explorer, it has some overlapping issues.
    I merely wanted to give you a quick heads up! Other than that, fantastic
    site!

Comments are closed.