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. When some one searches for his vital thing, therefore he/she desires to be
    available that in detail, therefore that thing is maintained
    over here.

  2. Its like you read my mind! You seem to know so much about this, like you wrote the book
    in it or something. I think that you can do with a few pics
    to drive the message home a bit, but instead of that, this is
    fantastic blog. An excellent read. I will definitely
    be back.

  3. The other day, while I was at work, my cousin stole my apple ipad and
    tested to see if it can survive a forty foot drop, just so she can be
    a youtube sensation. My iPad is now destroyed and she has 83 views.

    I know this is totally off topic but I had to share it with someone!

  4. I believe that is one of the so much significant information for me.
    And i am happy studying your article. But want to commentary on few basic
    things, The site style is great, the articles is
    in reality nice : D. Excellent activity, cheers

  5. I loved as much as you’ll receive carried out right here.
    The sketch is attractive, your authored material stylish.
    nonetheless, you command get got an nervousness over that
    you wish be delivering the following. unwell unquestionably come more formerly again since exactly
    the same nearly a lot often inside case you shield this hike.

  6. Fantastic beat ! I would like to apprentice at the same
    time as you amend your site, how can i subscribe for a weblog web site?
    The account aided me a applicable deal. I have been a
    little bit acquainted of this your broadcast offered bright transparent idea

  7. Hi there to all, how is everything, I think every one is getting more from this web site, and your views
    are fastidious in favor of new viewers.

  8. Someone essentially help to make significantly articles I might
    state. This is the very first time I frequented
    your web page and to this point? I surprised with the research you made to
    create this actual submit amazing. Great job!

  9. I’ve been browsing online more than three hours today, yet I never found any interesting article like yours.

    It’s pretty worth enough for me. Personally, if all web owners and bloggers made good content as you did, the net will be a lot more
    useful than ever before.

  10. elegant review. Additionally visit the following site
    to accomplish slot online pulsa. This unique extraordinary webpage has received condition via judi slot online video games people in Dalam negri.

    There are generally a great deal of lovely promos in the event you join at present.

  11. Hi my family member! I wish to say that this post is amazing,
    great written and include approximately all vital infos.
    I would like to look extra posts like this .

  12. Fantastic beat ! I wish to apprentice at the same
    time as you amend your site, how can i subscribe for a blog site?

    The account aided me a acceptable deal. I had been a
    little bit familiar of this your broadcast provided shiny clear concept

  13. What’s Going down i’m new to this, I stumbled upon this I’ve discovered It positively helpful and it has helped me out
    loads. I am hoping to contribute & aid other users like its
    aided me. Good job.

  14. Hi i am kavin, its my first occasion to commenting anywhere,
    when i read this piece of writing i thought i could also make comment due to this good paragraph.

  15. Today, I went to the beachfront with my kids. I found
    a sea shell and gave it to my 4 year old daughter and said “You can hear the ocean if you put this to your ear.” She put
    the shell to her ear and screamed. There was a hermit crab inside and it
    pinched her ear. She never wants to go back! LoL I know this is completely off topic but I had
    to tell someone!

  16. You could definitely see your enthusiasm in the article you write.
    The arena hopes for more passionate writers such as
    you who are not afraid to say how they believe. At all times follow your
    heart.

  17. I’ve been browsing on-line greater than 3 hours nowadays, but I never discovered any attention-grabbing article like yours.

    It’s lovely value enough for me. In my view, if all web owners and bloggers made excellent content material as you probably did, the net can be much more useful than ever before.

  18. I am curious to find out what blog system you have been working with?
    I’m having some small security problems with my latest site and I would like to
    find something more safeguarded. Do you have any suggestions?

  19. Heya i’m for the first time here. I found this board and I to find
    It truly useful & it helped me out much. I’m hoping to provide one thing
    again and aid others such as you helped me.

Comments are closed.