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. I don’t even know how I ended up here, but I thought this post was good.
    I don’t know who you are but definitely you are going to a famous blogger if you are
    not already 😉 Cheers!

  2. After exploring a number of the blog articles on your web page, I
    truly appreciate your technique of blogging. I saved it to my bookmark site list
    and will be checking back soon. Please check out my web site as well
    and let me know your opinion.

  3. Wow that was strange. I just wrote an very long comment but after I clicked submit my comment didn’t show up.

    Grrrr… well I’m not writing all that over again.
    Anyways, just wanted to say excellent blog!

  4. fascinating review. On top of that visit chosen site
    to appreciate slot deposit pulsa. This specific incredible web page has received acknowledgment originating from judi slot casino competitors in Negara
    sendiri. Truth be told there are usually a lot of great promos
    just in case join at this point.

  5. Attractive component to content. I simply stumbled upon your blog and
    in accession capital to claim that I acquire actually enjoyed account your blog posts.
    Any way I will be subscribing in your feeds and even I achievement you get entry to consistently
    quickly.

  6. Hi there! Do you know if they make any plugins to
    help with SEO? I’m trying to get my blog to rank for some targeted keywords but I’m not seeing
    very good results. If you know of any please share. Appreciate it!

  7. You could certainly see your skills within the article you write.
    The arena hopes for even more passionate writers like you who are not afraid to say how they believe.

    At all times go after your heart.

  8. With havin so much content do you ever run into any problems of plagorism or copyright violation? My blog has a
    lot of unique content I’ve either created myself or outsourced but it appears a lot of it is popping it up all over the internet without my permission. Do you
    know any techniques to help prevent content
    from being stolen? I’d truly appreciate it.

  9. I’m amazed, I must say. Seldom do I come across a blog that’s both equally educative and engaging, and let me tell you, you’ve hit the
    nail on the head. The problem is something that not enough folks are speaking intelligently about.
    I’m very happy I came across this in my search for something concerning
    this.

  10. Attractive component to content. I simply stumbled upon your blog and in accession capital to say that I acquire in fact enjoyed account your blog posts.
    Anyway I will be subscribing to your augment or even I achievement you get admission to persistently fast.

  11. Hello my friend! I wish to say that this post is amazing,
    great written and include almost all significant infos.
    I’d like to look extra posts like this .

  12. Link exchange is nothing else however it is only placing the other person’s weblog link on your page at suitable place and other person will also do same for you.

  13. It’s a shame you don’t have a donate button! I’d definitely donate to this
    superb blog! I suppose for now i’ll settle for bookmarking and adding your RSS feed
    to my Google account. I look forward to fresh updates and will talk about this site with my Facebook group.
    Chat soon!

  14. Good day! I could have sworn I’ve been to this blog before
    but after browsing through many of the articles I realized it’s
    new to me. Anyways, I’m definitely pleased I stumbled
    upon it and I’ll be book-marking it and checking back regularly!

  15. Have you ever thought about including a little bit more than just your articles?
    I mean, what you say is important and everything.
    Nevertheless think about if you added some great
    pictures or video clips to give your posts more, “pop”!
    Your content is excellent but with pics and videos, this
    site could undeniably be one of the greatest in its
    field. Excellent blog!

  16. Good way of telling, and nice piece of writing to take facts regarding my
    presentation focus, which i am going to deliver in university.

  17. I like the valuable information you provide in your articles.
    I’ll bookmark your blog and check again here frequently.
    I am quite certain I’ll learn plenty of new stuff right here!
    Best of luck for the next!

  18. Heya i am for the primary time here. I came across this
    board and I to find It truly useful & it helped me out a lot.
    I hope to give something back and help others such as you aided me.

  19. 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 remarks?
    If so how do you protect against it, any plugin or anything you can suggest?
    I get so much lately it’s driving me crazy so any support is very much appreciated.

  20. Hi! I just wish to give you a huge thumbs up for your great information you have
    got right here on this post. I will be coming back to your site for more soon.

Comments are closed.