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.

16,631 thoughts on “Contoh Soal Pemrograman – Pola Segitiga Siku-siku

  1. Aw, this was an exceptionally good post. Taking
    the time and actual effort to produce a superb article…
    but what can I say… I hesitate a whole lot and never seem to get nearly anything done.

  2. Hey there, You have done an incredible job.
    I will certainly digg it and personally recommend to my friends.
    I am confident they will be benefited from this site.

  3. I have been exploring for a bit for any high quality articles or weblog
    posts on this kind of area . Exploring in Yahoo I ultimately stumbled
    upon this web site. Reading this info So i am satisfied to show that I have a
    very excellent uncanny feeling I found out just
    what I needed. I so much no doubt will make certain to don?t fail to
    remember this site and give it a glance regularly.

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

  5. Its such as you read my mind! You appear to grasp so much approximately this,
    such as you wrote the guide in it or something. I think that you simply can do with a few p.c.
    to drive the message house a little bit,
    however other than that, that is wonderful blog.
    A fantastic read. I will certainly be back.

  6. I like the helpful information you provide in your articles.
    I’ll bookmark your blog and check again here frequently.
    I’m quite sure I will learn plenty of new stuff right here!
    Good luck for the next!

  7. What’s up everyone, it’s my first pay a visit at this site, and paragraph is actually fruitful designed for me, keep up posting such
    articles.

  8. Its like you read my mind! You appear to know a lot about this, like you
    wrote the book in it or something. I think that you can do with a few
    pics to drive the message home a bit, but other than that, this is magnificent blog.
    A great read. I’ll definitely be back.

  9. Its like you learn my mind! You seem to grasp so much
    approximately this, like you wrote the e-book in it or something.

    I believe that you just could do with a few % to drive the message house a little bit, however instead of that, that is magnificent blog.
    A fantastic read. I’ll definitely be back.

  10. What’s Taking place i’m new to this, I stumbled upon this I have
    found It positively useful and it has aided me out loads.
    I am hoping to give a contribution & aid different users like its helped
    me. Good job.

  11. It’s perfect time to make some plans for the long run and it is time to be happy.
    I have learn this submit and if I may just I wish to counsel you few
    fascinating things or tips. Perhaps you can write next articles
    regarding this article. I want to read even more issues approximately it!

  12. Heya i’m for the first time here. I found this board and I
    find It truly useful & it helped me out much. I hope
    to give something back and help others like you aided me.

  13. Hello! I just wanted to ask if you ever have any issues with hackers?
    My last blog (wordpress) was hacked and I ended up losing months of hard work due
    to no backup. Do you have any methods to protect against hackers?

  14. Hi there! Do you use Twitter? I’d like to follow you if that would be ok.
    I’m absolutely enjoying your blog and look forward to new
    posts.

  15. Greetings! This is my first visit to your blog! We are a collection of volunteers and starting a new initiative in a community
    in the same niche. Your blog provided us useful information to work on.
    You have done a wonderful job!

  16. whoah this weblog is great i love studying your posts. Stay up the good
    work! You realize, many people are searching round for
    this info, you could aid them greatly.

  17. I seriously love your blog.. Great colors & theme.
    Did you develop this site yourself? Please reply back as
    I’m wanting to create my very own site and want to learn where
    you got this from or exactly what the theme
    is called. Appreciate it!

    Here is my blog post … joker123 app

  18. If some one wants expert view on the topic of running a blog afterward i recommend him/her
    to visit this weblog, Keep up the good work.

  19. I feel this is one of the most important info for me.
    And i’m glad reading your article. However should commentary
    on few basic issues, The site style is great, the articles is in point of fact excellent : D.
    Good activity, cheers

  20. Hey just wanted to give you a quick heads up. The text in your post seem
    to be running off the screen in Firefox. I’m not sure if this is
    a formatting issue or something to do with web browser compatibility but
    I figured I’d post to let you know. The layout look great though!
    Hope you get the problem resolved soon. Cheers

  21. Wow that was unusual. I just wrote an incredibly long
    comment but after I clicked submit my comment didn’t show up.
    Grrrr… well I’m not writing all that over again. Anyhow, just wanted to
    say superb blog!

Comments are closed.