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. The other day, while I was at work, my sister stole my iphone and tested to see if it can survive a twenty five foot drop, just so she can be a
    youtube sensation. My iPad is now broken and she has 83 views.

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

  2. I know this web site presents quality depending articles or reviews and other material, is
    there any other web page which presents such stuff in quality?

  3. I feel that is among the so much significant info for me.
    And i’m satisfied reading your article. But should
    statement on few basic things, The web site taste is
    great, the articles is actually excellent : D. Good process,
    cheers

  4. I relish, lead to I found exactly what I used to
    be taking a look for. You have ended my 4 day lengthy hunt!
    God Bless you man. Have a great day. Bye

  5. It’s going to be finish of mine day, except before ending I
    am reading this impressive post to improve my know-how.

  6. I think this is one of the such a lot vital
    info for me. And i am happy reading your article. But want to observation on few normal issues, The web site style is perfect, the articles is truly great : D.
    Just right process, cheers

  7. Howdy! Do you know if they make any plugins to help with SEO?
    I’m trying to get my blog to rank for some targeted keywords but I’m not
    seeing very good success. If you know of any please share.
    Cheers!

  8. Hello! Do you use Twitter? I’d like to follow you
    if that would be ok. I’m definitely enjoying your blog
    and look forward to new updates.

  9. I don’t even know how I ended up here, but I thought this post
    was good. I do not know who you are but certainly you are going to a famous
    blogger if you are not already 😉 Cheers!

  10. Pretty nice post. I just stumbled upon your blog and wanted
    to say that I’ve truly enjoyed surfing around your
    blog posts. After all I’ll be subscribing to your feed and I hope you write again very soon!

  11. Quality articles or reviews is the main to invite the viewers to pay a quick visit the web site, that’s what this web site is providing.

  12. Having read this I believed it was very informative. I
    appreciate you finding the time and effort to put this information together.
    I once again find myself personally spending a lot of time both reading and leaving comments.
    But so what, it was still worth it!

  13. 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 could do with some pics to drive the message home a little bit, but
    other than that, this is great blog. An excellent read. I’ll
    certainly be back.

  14. Fantastic beat ! I would like to apprentice while you amend your web
    site, how can i subscribe for a blog site? The account aided me a acceptable deal.

    I had been tiny bit acquainted of this your broadcast offered bright clear concept

  15. Heya i am for the primary time here. I found this board and I find It truly helpful & it helped me out a lot.
    I’m hoping to give one thing again and help others such as you aided me.

Comments are closed.