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,631 thoughts on “Contoh Soal Pemrograman – Pola Segitiga Siku-siku

  1. I’ve been surfing online more than 3 hours these days, but I by no
    means discovered any fascinating article like yours.
    It is lovely value enough for me. Personally, if all webmasters and bloggers made good content as you probably did, the
    internet will probably be much more helpful than ever before.

  2. What i don’t realize is if truth be told how you are not actually a lot more well-favored than you may be right now.
    You are very intelligent. You already know therefore
    significantly with regards to this subject, produced me
    personally consider it from a lot of various angles.

    Its like women and men don’t seem to be interested except it’s something to do with
    Girl gaga! Your individual stuffs great. All the time deal with it up!

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

  4. I think this is one of the such a lot important information for me.
    And i am glad studying your article. However wanna statement on some general things, The web site
    style is ideal, the articles is truly excellent : D.

    Just right process, cheers

  5. The other day, while I was at work, my sister stole my apple ipad and tested
    to see if it can survive a twenty five foot drop, just so she can be a youtube sensation. My apple ipad is now destroyed and she has 83
    views. I know this is totally off topic but I had to share it with someone!

  6. Howdy, i read your blog occasionally and i own a similar one and i was just wondering if you get a lot of spam
    comments? If so how do you reduce it, any plugin or
    anything you can advise? I get so much lately it’s driving me insane so any assistance is very much
    appreciated.

  7. Hello! I could have sworn I’ve visited your blog before but
    after going through a few of the articles I realized it’s new to me.
    Regardless, I’m certainly pleased I discovered it and I’ll be bookmarking
    it and checking back often!

  8. Attractive element of content. I simply stumbled
    upon your site and in accession capital to assert that I get in fact enjoyed account your blog
    posts. Any way I will be subscribing in your feeds or even I fulfillment you get right of entry to persistently fast.

  9. Hi there, i read your blog occasionally and i own a similar one and i was just curious if you get
    a lot of spam comments? If so how do you prevent it, any
    plugin or anything you can recommend? I get so much lately it’s driving me mad so any help is very
    much appreciated.

  10. Yesterday, while I was at work, my cousin stole my iPad and tested to see
    if it can survive a twenty five foot drop, just so she can be a youtube sensation. My apple ipad is now destroyed and she has 83 views.

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

  11. I’m impressed, I must say. Seldom do I come across a blog that’s both educative and amusing, and without a doubt, you’ve hit the nail on the head.
    The issue is an issue that not enough people are speaking intelligently about.
    Now i’m very happy that I found this in my hunt for something relating to this.

  12. I’m extremely impressed with your writing skills and also with the layout on your
    weblog. Is this a paid theme or did you modify it yourself?

    Either way keep up the excellent quality writing, it is rare to
    see a nice blog like this one these days.

  13. Hi, i feel that i saw you visited my web site thus i came to go back the desire?.I’m trying to to
    find things to improve my web site!I suppose its adequate to
    make use of some of your ideas!!

  14. Greetings from Los angeles! I’m bored at work so I decided to check out
    your blog on my iphone during lunch break. I love the info you provide here and can’t wait to take a
    look when I get home. I’m shocked at how quick your blog loaded on my cell phone ..

    I’m not even using WIFI, just 3G .. Anyways, fantastic site!

  15. This is the right webpage for anybody who would like to understand this topic.
    You realize a whole lot its almost hard to argue with you (not that I actually will need to…HaHa).
    You definitely put a new spin on a topic that has been discussed for ages.
    Excellent stuff, just excellent!

  16. Hi, I do believe this is an excellent blog.
    I stumbledupon it 😉 I may revisit once again since I book marked it.

    Money and freedom is the greatest way to change, may you be rich and continue to guide other
    people.

Comments are closed.