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. برند ( هایک ویژن ) در عرض 20 سال به یکی از معتبرترین برندهای تولید کننده دوربین مداربسته در جهان تبدیل شد. کارخانجات تولیدی هایک ویژن در کشور چین فعال هستند و این شرکت در زمنیه تولید تجهیزات حفاظت تصویری فعال است. این شرکت در صنعت حفاظت تصویری دنیا به یک شرکت پیشرو در زمینه تحقیق و توسعه و ارائه راهکارهای نوین برای آینده شهره است و ما مفتخریم که محصولات با کیفیت برند هایک ویژن را به شما عزیزان عرضه می کنیم.

  2. I’m curious to find out what blog system you have been working with?
    I’m having some minor security issues with my latest blog and I’d
    like to find something more risk-free. Do you have any recommendations?

  3. Your style is unique in comparison to other folks I
    have read stuff from. I appreciate you for posting when you’ve got the opportunity, Guess I’ll just book mark this web
    site.

  4. Yesterday, while I was at work, my sister stole my iPad and tested to see if it can survive a 25 foot drop, just so she can be a youtube
    sensation. My apple ipad is now destroyed and she has 83 views.
    I know this is totally off topic but I had to share it with someone!

Comments are closed.