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. A person essentially lend a hand to make seriously posts I
    would state. That is the very first time I frequented your web
    page and up to now? I amazed with the research you made to make this particular put up extraordinary.
    Fantastic job!

  2. Wow! In the end I got a webpage from where I be
    capable of actually get helpful information concerning my study and knowledge.

  3. Woah! I’m really enjoying the template/theme of this blog.
    It’s simple, yet effective. A lot of times it’s challenging to get that “perfect balance” between usability and appearance.
    I must say you’ve done a excellent job with this.
    Additionally, the blog loads super fast for me on Firefox.
    Superb Blog!

  4. Hey! This post couldn’t be written any better!

    Reading through this post reminds me of my good old room
    mate! He always kept talking about this. I will forward this post to him.
    Pretty sure he will have a good read. Many thanks for sharing!

  5. I want to to thank you for this fantastic read!! I definitely enjoyed every little bit of
    it. I have got you book-marked to look at new
    things you post…

  6. Great items from you, man. I have take into account your stuff previous to
    and you’re just extremely great. I actually like
    what you’ve bought here, really like what you
    are saying and the way in which through which you assert it.
    You are making it entertaining and you still take care of to stay it wise.
    I can not wait to read far more from you. This is actually a wonderful web site.

  7. Ahaa, its good discussion concerning this post at this place
    at this weblog, I have read all that, so at this time me
    also commenting at this place.

  8. Every weekend i used to pay a quick visit this website, because i want enjoyment, since
    this this site conations truly good funny stuff too.

  9. Hսrrah, that’s what Ι was searching foг, what a stuff!
    existing here at this website, thanks admin of this
    web site.

    Ⅽheck out my page: top1toto

Comments are closed.