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 read my mind! You appear to know so much 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 little bit, but instead
    of that, this is great blog. A great read. I’ll definitely be back.

  2. Its such as you learn my thoughts! You seem to know a lot approximately this, such as
    you wrote the e book in it or something. I believe that
    you simply could do with some % to power the message house a little bit, but other than that, this is magnificent blog.

    An excellent read. I will certainly be back.

  3. When some one searches for his necessary thing, therefore he/she
    needs to be available that in detail, thus that thing is
    maintained over here.

  4. crucial review. Additionally visit such type of site to
    learn slot pulsa. This sort of amazing web site
    has received world-wide recognition with agen slot
    pulsa casino contributors in Dalam negri. Right now there will be
    various spectacular promos when you join nowadays.

  5. My family members every time say that I am killing my time here at web, but I know I am getting
    familiarity every day by reading such fastidious articles.

  6. Attractive section of content. I just stumbled upon your
    blog and in accession capital to assert that I acquire actually enjoyed account your blog posts.

    Any way I’ll be subscribing to your feeds and even I achievement you access consistently quickly.

  7. Hello, i read your blog occasionally and i own a similar one and i was just wondering if you get a lot of spam responses?

    If so how do you protect against it, any plugin or anything you can suggest?

    I get so much lately it’s driving me mad so any assistance is very much appreciated.

  8. Does your blog have a contact page? I’m having trouble locating it but, I’d like to send
    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 improve over time.

  9. Heya i’m for the first time here. I came across 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.

  10. Hello, i read your blog from time to time and i own a similar one and i
    was just curious if you get a lot of spam feedback? If so
    how do you prevent it, any plugin or anything you can recommend?
    I get so much lately it’s driving me insane so any assistance is very much appreciated.

  11. If some one wishes to be updated with latest technologies therefore he
    must be pay a visit this web site and be up to date daily.

  12. Hey! I’m at work browsing your blog from my new apple iphone!
    Just wanted to say I love reading through your blog and look forward to all your posts!

    Keep up the superb work!

  13. I just like the valuable information you supply on your articles.

    I will bookmark your blog and check again right here regularly.
    I am fairly sure I’ll be told plenty of new stuff right here!
    Best of luck for the next!

  14. 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 whole lot and don’t manage to get
    anything done.

  15. Excellent goods from you, man. I have understand your stuff previous
    to and you are simply too wonderful. I actually like
    what you’ve got here, certainly like what you
    are stating and the best way wherein you assert it. You make it enjoyable and you still care for to keep
    it sensible. I cant wait to learn much more from you.
    This is actually a tremendous web site.

  16. whoah this blog is wonderful i love reading your posts.
    Keep up the good work! You understand, a lot of
    people are hunting round for this information, you can help them greatly.

  17. This is the right web site for everyone who would like to find out about this topic.
    You realize a whole lot its almost tough to argue with you (not that I actually
    would want to…HaHa). You certainly put a brand new spin on a topic that has been discussed for many years.
    Excellent stuff, just wonderful!

  18. Wow, marvelous blog layout! How lengthy have you been blogging for?

    you made blogging look easy. The entire glance of your web site is
    wonderful, let alone the content!

Comments are closed.