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. Its like you learn my thoughts! You appear to understand so
    much about this, like you wrote the e book in it or something.
    I believe that you just could do with a few p.c. to power the message house a little bit, but instead of
    that, this is fantastic blog. A fantastic read.

    I will definitely be back.

  2. Since the admin of this site is working, no hesitation very
    rapidly it will be well-known, due to its quality contents.

  3. Heya i am for the first time here. I found this board and I find It truly useful & it helped me out a lot.
    I hope to give something back and help others like you aided me.

  4. Hey there! I’ve been following your web site for a long time now and
    finally got the bravery to go ahead and give
    you a shout out from New Caney Tx! Just wanted to say keep up the good job!

  5. It’s a pity you don’t have a donate button! I’d
    certainly donate to this outstanding blog! I guess for now
    i’ll settle for book-marking and adding your RSS
    feed to my Google account. I look forward to fresh updates and will share this site with my
    Facebook group. Chat soon!

  6. Excellent way of explaining, and good paragraph to take facts regarding my
    presentation subject, which i am going to present in school.

  7. critical review. In addition visit this kind of site to realize slot
    pulsa. Fantastic web page has received around the world recognition coming from slot via pulsa gaming avid gamers
    in Indonesia. Truth be told there will be many exciting promos inside event you join at this moment.

  8. I truly love your blog.. Pleasant colors & theme. Did you create this
    web site yourself? Please reply back as I’m wanting to
    create my own personal blog and would love to learn where you got this from or exactly what the theme is named.
    Cheers!

  9. That is very fascinating, You are an excessively
    skilled blogger. I’ve joined your rss feed and look ahead to seeking
    more of your magnificent post. Additionally, I’ve shared
    your site in my social networks

  10. What’s Taking place i’m new to this, I stumbled upon this I’ve discovered It absolutely
    useful and it has aided me out loads. I’m hoping
    to contribute & aid other customers like its aided me.

    Great job.

  11. Hello! Someone in my Myspace group shared this site with us so I came to take a look.
    I’m definitely enjoying the information. I’m bookmarking and will be tweeting
    this to my followers! Great blog and excellent design and style.

  12. It’s the best time to make some plans for the longer term and it’s time to be happy.
    I have read this publish and if I may I wish to suggest you few attention-grabbing issues or tips.

    Maybe you could write next articles relating to
    this article. I desire to learn even more things approximately it!

  13. Hi, 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 responses?
    If so how do you prevent it, any plugin or anything you can suggest?
    I get so much lately it’s driving me crazy so any assistance is very much
    appreciated.

  14. We’re a group of volunteers and opening a new scheme in our community.
    Your web site offered us with valuable information to work on. You’ve done a formidable job
    and our whole community will be grateful to you.

  15. Appreciating the hard work you put into your site
    and detailed information you provide. It’s
    nice to come across a blog every once in a while that isn’t the same old
    rehashed material. Great read! I’ve saved your
    site and I’m adding your RSS feeds to my Google account.

  16. significant review. Within the similar trend visit our site that may be played judi slot online.
    These types of pages has received wonder through game slot video gaming allies in Negara sendiri.
    Certainly, there tend to be plenty of wonderful promos
    if you ever join right now.

  17. When I initially commented I appear to have clicked on the -Notify
    me when new comments are added- checkbox and from now on every time a comment is added I recieve 4 emails with the exact
    same comment. Perhaps there is an easy method you can remove me from that service?
    Cheers!

  18. I’m gone to inform my little brother, that he should also pay a quick visit this blog on regular basis
    to get updated from hottest news update.

  19. Nice blog right here! Also your web site loads up very fast!

    What web host are you the usage of? Can I am getting your affiliate hyperlink to your
    host? I want my site loaded up as quickly as yours
    lol

  20. I have been exploring for a bit for any high quality articles or weblog posts on this kind of space .
    Exploring in Yahoo I finally stumbled upon this web site.
    Reading this information So i’m glad to show that I have an incredibly good uncanny feeling I discovered just
    what I needed. I so much certainly will make sure to don?t disregard this web site
    and give it a glance regularly.

  21. Hi just wanted to give you a brief 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 internet browsers and both show the same outcome.

  22. exciting review. In addition to that visit my very own site to
    try out agen slot deposit pulsa. This particular
    web site has received identification from judi slot online gambling
    cricket fans in Dalam negeri. Now there are generally
    plenty of stylish promos as you join currently.

  23. Aw, this was a very nice post. Taking a few minutes and actual effort to generate
    a great article… but what can I say… I hesitate a lot and never seem to get nearly anything done.

Comments are closed.