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. If some one needs to be updated with most recent technologies
    then he must be pay a visit this web site and be up to date
    all the time.

  2. Excellent blog here! Also your web site loads up very fast!
    What host are you using? Can I get your affiliate link to your host?
    I wish my web site loaded up as quickly as yours
    lol

  3. Right now it looks like Drupal is the top blogging platform out
    there right now. (from what I’ve read) Is that what you are using on your blog?

  4. If some one needs expert view regarding blogging then i advise him/her to
    pay a quick visit this blog, Keep up the good job.

  5. An interesting discussion is definitely worth comment.
    There’s no doubt that that you ought to write more about
    this subject matter, it might not be a taboo subject
    but usually folks don’t talk about these subjects. To the next!
    Best wishes!!

  6. I’ve learn a few good stuff here. Certainly price bookmarking for
    revisiting. I surprise how a lot attempt you put to create this type
    of great informative site.

  7. Fantastic beat ! I would like to apprentice while you amend your web site, how can i subscribe
    for a blog site? The account helped me a acceptable deal.
    I had been tiny bit acquainted of this your broadcast
    provided bright clear idea

  8. Somebody necessarily assist to make seriously posts I’d state.
    This is the very first time I frequented your web page and to this point?
    I amazed with the research you made to make this particular post extraordinary.
    Wonderful job!

  9. Good way of explaining, and pleasant paragraph to get information on the topic
    of my presentation topic, which i am going to convey in college.

  10. Write more, thats all I have to say. Literally, it seems as though you relied on the video to make your point.
    You clearly know what youre talking about, why throw
    away your intelligence on just posting videos to your site when you could be giving us something informative to read?

  11. Great post but I was wanting to know if you could
    write a litte more on this subject? I’d be very grateful if you could elaborate a little bit more.
    Cheers!

  12. That is very attention-grabbing, You’re a very skilled blogger.
    I have joined your feed and look forward to in the hunt for
    more of your wonderful post. Additionally, I’ve shared your web site in my social networks

  13. Good day! This is my first visit to your blog! We are a group of volunteers and starting
    a new initiative in a community in the same niche. Your blog provided us valuable
    information to work on. You have done a marvellous job!

  14. A person essentially lend a hand to make critically posts I might state.
    That is the first time I frequented your web page and up to now?
    I amazed with the analysis you made to make this particular
    submit incredible. Magnificent task!

  15. Hello! Do you know if they make any plugins to protect against hackers?
    I’m kinda paranoid about losing everything I’ve worked hard on. Any recommendations?

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

  17. Pretty nice post. I just stumbled upon your weblog and wished to say that I’ve truly loved surfing around your blog posts.
    In any case I’ll be subscribing on your rss feed and
    I’m hoping you write again very soon!

  18. Hi there this is kind of of off topic but I
    was wondering if blogs use WYSIWYG editors or if you have to
    manually code with HTML. I’m starting a blog soon but have no coding skills so I wanted to get advice from someone with experience.
    Any help would be greatly appreciated!

  19. Hi exceptional blog! Does running a blog similar to this require a massive
    amount work? I have virtually no expertise in computer programming however
    I had been hoping to start my own blog soon.
    Anyways, if you have any ideas or tips for new blog owners please share.
    I know this is off subject however I just needed to ask.
    Appreciate it!

  20. I don’t even know how I ended up here, but I
    thought this post was great. I don’t know who you are but definitely
    you’re going to a famous blogger if you aren’t already 😉 Cheers!

  21. Write more, thats all I have to say. Literally, it seems as though you relied on the video to make your point.
    You clearly know what youre talking about, why throw
    away your intelligence on just posting videos to your blog
    when you could be giving us something enlightening to read?

  22. What’s Taking place i am new to this, I stumbled
    upon this I’ve discovered It absolutely helpful and it has aided me out loads.
    I hope to give a contribution & aid different users like its aided me.
    Good job.

  23. Ahaa, its good dialogue on the topic of this piece of writing at this place at this
    blog, I have read all that, so now me also commenting at this place.

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

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

  26. Why viewers still make use of to read news papers when in this technological world all is available on net?

Comments are closed.