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

  2. Currently it sounds like Expression Engine is the top blogging platform out there right now.
    (from what I’ve read) Is that what you’re using on your blog?

  3. When I initially commented I clicked the “Notify me when new comments are added” checkbox
    and now each time a comment is added I get four emails with the same comment.
    Is there any way you can remove me from that service?
    Bless you!

  4. Very nice post. I just stumbled upon your weblog and wanted to say that I have truly enjoyed browsing your blog posts.

    In any case I will be subscribing to your rss feed and I hope you
    write again very soon!

  5. Hello! I know this is kinda off topic nevertheless I’d figured
    I’d ask. Would you be interested in exchanging links or maybe guest
    authoring a blog post or vice-versa? My blog discusses a lot of the same topics as yours and I
    think we could greatly benefit from each other. If you might be interested feel
    free to shoot me an email. I look forward to hearing from you!
    Great blog by the way!

  6. interesting review. On top of that visit surely the site
    to view slot deposit pulsa. These types of pages has received personality received from slot via pulsa bets
    individuals in Dalam negri. Now there will be loads of fascinating promos because you join presently.

  7. It’s appropriate time to make a few plans for the long run and it is time to be happy.
    I’ve learn this publish and if I may I desire to counsel you few interesting things or suggestions.
    Perhaps you can write next articles referring to this article.
    I desire to read even more issues approximately it!

  8. Pretty nice post. I simply stumbled upon your weblog and
    wished to mention that I’ve truly enjoyed browsing your weblog posts.
    In any case I will be subscribing on your rss feed and I hope you write again soon!

  9. Fantastic blog! Do you have any recommendations for aspiring writers?
    I’m planning to start my own site soon but I’m a little lost on everything.
    Would you suggest starting with a free platform like WordPress or go
    for a paid option? There are so many options out there that I’m completely confused ..
    Any ideas? Bless you!

  10. Right here is the perfect web site for anyone who
    wishes to understand this topic. You realize a whole lot its almost tough to argue with you (not
    that I actually will need to…HaHa). You definitely
    put a brand new spin on a subject that has been written about for
    years. Wonderful stuff, just wonderful!

  11. Howdy! I could have sworn I’ve been to this blog before but after browsing through some of the post I realized it’s new to me.
    Anyways, I’m definitely happy I found it and I’ll be book-marking and checking back frequently!

  12. Hi, its good article regarding media print, we all understand media is a impressive source of data.

  13. each time i used to read smaller articles or reviews that as well clear
    their motive, and that is also happening with this paragraph which I
    am reading now.

  14. I like the valuable information you provide in your articles.
    I’ll bookmark your weblog and test once more right here regularly.
    I’m slightly certain I will be informed lots of new stuff
    right here! Good luck for the next!

  15. Hmm is anyone else encountering problems with the pictures on this blog loading?
    I’m trying to figure out if its a problem on my end or
    if it’s the blog. Any feed-back would be greatly appreciated.

  16. Does your blog have a contact page? I’m having problems locating it but, I’d like to send
    you an e-mail. I’ve got some recommendations
    for your blog you might be interested in hearing. Either way, great
    blog and I look forward to seeing it develop over time.

  17. Attractive section of content. I simply stumbled upon your site and in accession capital to say that I get actually loved account your weblog posts.
    Any way I will be subscribing for your feeds or even I
    success you get right of entry to consistently quickly.

  18. Fantastic blog! Do you have any helpful hints for aspiring writers?
    I’m hoping to start my own blog soon but I’m a little lost on everything.
    Would you suggest starting with a free platform like WordPress or
    go for a paid option? There are so many choices out there that I’m completely confused ..

    Any suggestions? Cheers!

  19. I do not even understand how I stopped up right here, however I thought this
    submit was good. I do not realize who you are but definitely you’re going to a famous blogger
    in case you are not already. Cheers!

  20. Pretty element of content. I just stumbled upon your web site and in accession capital to assert that I acquire in fact
    loved account your blog posts. Any way I will be
    subscribing for your augment or even I fulfillment you get right
    of entry to constantly rapidly.

  21. Hello! Do you know if they make any plugins to assist
    with Search Engine Optimization? I’m trying to get my blog to rank for some targeted keywords but I’m not seeing very good
    gains. If you know of any please share. Kudos!

Comments are closed.