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. Heya i am for the first time here. I came across this board
    and I find It truly useful & it helped me out much.
    I hope to give something back and help others like you helped
    me.

  2. I like the helpful info you supply for your articles.
    I will bookmark your weblog and check once more here frequently.

    I am reasonably certain I will be informed a lot of new stuff right right here!
    Best of luck for the following!

  3. My partner and I stumbled over here coming from a different web page
    and thought I may as well check things out. I like what I
    see so i am just following you. Look forward to exploring
    your web page repeatedly.

  4. 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 had written 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 points for beginner blog writers? I’d definitely appreciate it.

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

  6. Every weekend i used to go to see this web site, because
    i wish for enjoyment, since this this site conations truly
    fastidious funny information too.

  7. Hey there! I’m at work browsing your blog from my new apple iphone!
    Just wanted to say I love reading your blog and look forward to all your posts!
    Carry on the excellent work!

  8. Heya i am for the first time here. I found this board and I find It truly useful & it helped me out much.

    I hope to give something back and help others like
    you helped me.

  9. Its such as you learn my mind! You appear to grasp so
    much approximately this, like you wrote the e book in it or something.
    I feel that you could do with a few p.c. to drive the
    message home a bit, however instead of that, that is fantastic blog.
    A great read. I will certainly be back.

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

    Look into my blog post … rokslides.com

  11. I don’t know if it’s just me or if perhaps everyone else encountering problems
    with your blog. It appears like some of the text in your posts
    are running off the screen. Can someone else please provide feedback
    and let me know if this is happening to them
    too? This could be a issue with my browser because I’ve had this happen before.
    Cheers

  12. What’s Going down i’m new to this, I stumbled
    upon this I’ve discovered It positively useful and it has helped me out
    loads. I am hoping to give a contribution & aid different customers like
    its helped me. Great job.

  13. Good day! Do you know if they make any plugins to protect
    against hackers? I’m kinda paranoid about losing everything
    I’ve worked hard on. Any tips?

  14. Great weblog right here! Also your web site rather a lot up very fast!
    What host are you the usage of? Can I am getting your associate hyperlink on your host?

    I wish my site loaded up as fast as yours lol

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

  16. Excellent weblog here! Additionally your site
    rather a lot up very fast! What web host are you using?
    Can I am getting your affiliate hyperlink for your host? I desire my site loaded
    up as quickly as yours lol

  17. Howdy! This is my first visit to your blog! We are a group of volunteers and starting a new initiative in a community in the same niche.

    Your blog provided us useful information to work on. You have
    done a marvellous job!

  18. Its llike yߋu reɑd my mind! You seem to кnow soo much aƄout this, ⅼike youu wrote tһе book
    inn itt ⲟr somеthing. I think that you can dο with some pics to drive
    thee message hօme a bit, but otһer than that, tһis is wonderful blog.
    An exellent reaⅾ. I’ll certaіnly be bɑck.

    Have a ⅼook att my web site อ่านหัวข้อที่กำลังเป็นกระแส

Comments are closed.