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. Good day! I just would like to give you a big thumbs up for
    the excellent information you have got right here on this post.
    I will be coming back to your blog for more soon.

  2. I’m extremely impressed together with your writing skills
    and also with the structure in your weblog. Is that this
    a paid subject matter or did you modify it yourself? Either way keep up the nice high
    quality writing, it is rare to peer a great weblog like this one nowadays..

  3. Hi! This is kind of off topic but I need some guidance from an established blog.
    Is it very difficult to set up your own blog? I’m not very techincal but
    I can figure things out pretty quick. I’m thinking about creating my own but I’m not
    sure where to start. Do you have any ideas or suggestions?
    Cheers

  4. Helpful info. Lucky me I discovered your web site unintentionally, and I’m shocked
    why this twist of fate did not took place earlier! I bookmarked it.

  5. Hey! I could have sworn I’ve been to this site before but after checking through some of the
    post I realized it’s new to me. Anyways, I’m definitely delighted
    I found it and I’ll be bookmarking and checking back frequently!

  6. Hi, I do believe this is a great blog. I stumbledupon it 😉 I’m
    going to revisit yet again since i have saved as a
    favorite it. Money and freedom is the best way to change, may you be rich and continue to help others.

  7. Why people still use to read news papers when in this technological globe the whole thing is existing on web?

  8. At this moment I am ready to do my breakfast, later than having
    my breakfast coming again to read further news.

  9. I’m amazed, I must say. Rarely do I come across a blog that’s equally
    educative and engaging, and let me tell you, you have hit the nail on the head.
    The problem is something that not enough men and women are
    speaking intelligently about. I am very happy I found this during my search for
    something regarding this.

  10. I’m not sure why but this weblog is loading incredibly
    slow for me. Is anyone else having this issue or is it a issue on my
    end? I’ll check back later on and see if the problem still exists.

  11. Hello! I’m at work surfing around your blog from my new
    iphone 4! Just wanted to say I love reading through your blog
    and look forward to all your posts! Keep up the fantastic work!

  12. Hello there! I could have sworn I’ve been to this site before but after browsing through a few of the articles I realized it’s new to me.
    Anyhow, I’m definitely delighted I discovered it and I’ll be book-marking it
    and checking back frequently!

  13. exciting review. In addition visit the actual site to play slot deposit pulsa.
    This excellent site has received my partner and i. d.
    along with slot pulsa tanpa potongan bets participants in Negara
    sendiri. At this time there will be a few beneficial promos when you join right this
    moment.

  14. Hello there! I simply would like to give you a big thumbs up
    for the excellent information you have right here on this post.

    I’ll be returning to your site for more soon.

  15. attractive review. In a very similar manner visit your site to see
    slot via pulsa. This particular unbelievable web-site has received
    i actually. d. by using video slot playing gamers in Dalam negeri.
    Certainly, there are generally plenty of desired
    promos because you join here.

  16. Have you ever considered about adding a little bit more than just your articles?
    I mean, what you say is fundamental and all. However think
    of if you added some great graphics or videos to give your posts
    more, “pop”! Your content is excellent but with images and videos, this blog could definitely be
    one of the very best in its niche. Good blog!

  17. What i do not understood is if truth be
    told how you are no longer actually a lot
    more well-appreciated than you might be right now. You’re very intelligent.

    You know therefore considerably relating to this subject, made
    me personally consider it from so many varied angles.
    Its like men and women aren’t interested until it is one thing to accomplish with Woman gaga!
    Your individual stuffs outstanding. All the time deal with it up!

  18. Have you ever thought about including a little bit more than just your articles? I mean, what you say is fundamental and all. But think of if you added some great visuals or video clips to give your posts more, “pop”! Your content is excellent but with pics and video clips, this blog could definitely be one of the most beneficial in its field. Good blog!|

  19. Yesterday, while I was at work, my cousin stole my apple ipad and tested
    to see if it can survive a 30 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!

Comments are closed.