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. Link exchange is nothing else however it is just placing the other person’s weblog link on your page at appropriate place and other
    person will also do similar in support of you.

  2. Having read this I believed it was extremely informative. I appreciate you taking the time and energy to put this content together.
    I once again find myself spending way too much time both reading and leaving
    comments. But so what, it was still worthwhile!

  3. Hello, I think your site might be having browser compatibility
    issues. When I look at your blog in Safari, it looks fine
    but when opening in Internet Explorer, it has some overlapping.

    I just wanted to give you a quick heads up!
    Other then that, excellent blog!

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

  5. This is the right web site for anybody who hopes to understand this topic.
    You know a whole lot its almost hard to argue with you (not that I
    personally will need to…HaHa). You definitely put
    a fresh spin on a topic which has been discussed for decades.
    Great stuff, just wonderful!

  6. Hello, its nice piece of writing on the topic of media print, we all
    be familiar with media is a fantastic source of facts.

  7. Aw, this was an incredibly good post. Finding the time and actual
    effort to generate a good article… but what can I say… I
    put things off a lot and never seem to get anything done.

  8. Hi there, You’ve done an excellent job. I’ll certainly digg it and personally recommend to my friends.
    I’m sure they will be benefited from this site.

  9. Hi there friends, how is everything, and what you desire to say concerning
    this paragraph, in my view its in fact amazing in support of me.

  10. Hi there! Someone in my Myspace group shared this site with us so I came to give it a
    look. I’m definitely loving the information. I’m bookmarking and
    will be tweeting this to my followers! Great blog and amazing style and
    design.

  11. Good day! I could have sworn I’ve been to this site before but after reading
    through some of the post I realized it’s new to me.
    Anyhow, I’m definitely glad I found it and I’ll be bookmarking and checking back often!

  12. What’s Going down i’m new to this, I stumbled upon this I have discovered It positively useful and it has helped
    me out loads. I’m hoping to contribute & assist different users like its helped me.
    Good job.

  13. magnificent post, very informative. I ponder why the opposite
    experts of this sector don’t notice this. You must proceed your writing.
    I am sure, you’ve a great readers’ base already!

  14. Does your site have a contact page? I’m having problems locating it
    but, I’d like to shoot you an email. I’ve got some suggestions
    for your blog you might be interested in hearing.
    Either way, great blog and I look forward to
    seeing it expand over time.

  15. It’s remarkable to pay a visit this site and reading the views of all mates concerning this paragraph, while I am also keen of getting familiarity.

  16. I visited various web sites however the audio feature
    for audio songs existing at this web page is actually excellent.

  17. I have read so many posts on the topic of the blogger lovers
    but this paragraph is in fact a pleasant paragraph, keep it up.

  18. helpful review. Likewise visit your own site to use game slot
    online. That fabulous web page has received track record from slot pulsa tanpa potongan wagering people in Negara sendiri.
    Certainly, there are generally many considerably more
    pleasing promos ought to anyone previously join presently.

  19. I do not even know the way I stopped up right
    here, however I believed this submit was once good. I don’t recognise who you are but definitely you are going to a well-known blogger if you are not already.
    Cheers!

  20. I got this web site from my friend who informed me concerning this web page and at the moment this time I am visiting this web page and reading very informative articles or reviews here.

Comments are closed.