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.

16,626 thoughts on “Contoh Soal Pemrograman – Pola Segitiga Siku-siku

  1. Hi there, i read your blog from time to time and i own a similar one and i was
    just wondering if you get a lot of spam remarks?
    If so how do you protect against it, any plugin or anything you can advise?
    I get so much lately it’s driving me mad so any support is very much appreciated.

  2. I’m not sure why but this weblog is loading very slow for me.
    Is anyone else having this issue or is it a issue on my end?
    I’ll check back later and see if the problem still exists.

  3. Hey there just wanted to give you a quick heads up and let you know a few of the images aren’t loading correctly.

    I’m not sure why but I think its a linking issue.
    I’ve tried it in two different browsers and both show the same results.

  4. 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. In my view, if
    all web owners and bloggers made good content as you did, the web will be much more useful than ever before.

  5. Hmm is anyone else experiencing problems with the images on this blog loading?
    I’m trying to find out if its a problem on my end or if it’s the blog.
    Any suggestions would be greatly appreciated.

  6. I like the valuable information you provide in your articles.
    I will bookmark your blog and check again here regularly.
    I’m quite certain I will learn lots of new stuff
    right here! Best of luck for the next!

  7. I like the helpful information you provide in your articles.
    I’ll bookmark your blog and check again here regularly.
    I am quite certain I will learn many new stuff
    right here! Good luck for the next!

  8. Hey there! I’ve been following your blog for a long time now and finally got the
    courage to go ahead and give you a shout out from New Caney Texas!
    Just wanted to tell you keep up the excellent job!

  9. Have you ever considered publishing an ebook or guest authoring on other sites?
    I have a blog based upon on the same information you discuss
    and would love to have you share some stories/information. I know my visitors would value your work.

    If you are even remotely interested, feel free
    to send me an e mail.

  10. I like the helpful info you supply for your articles.
    I’ll bookmark your blog and take a look at again right here
    regularly. I’m relatively sure I’ll be told lots of new stuff proper right here!
    Best of luck for the following!

  11. Having read this I believed it was extremely informative.

    I appreciate you spending some time and effort to put this
    short article together. I once again find myself spending
    way too much time both reading and commenting.
    But so what, it was still worth it!

  12. Hmm it seems like your blog ate my first comment (it
    was super long) so I guess I’ll just sum it up what I submitted and say,
    I’m thoroughly enjoying your blog. I as well am an aspiring blog blogger but I’m still
    new to the whole thing. Do you have any suggestions for rookie blog writers?
    I’d definitely appreciate it.

Comments are closed.