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 desires to be updated with most recent technologies after that
    he must be pay a visit this web page and be up to date all the time.

  2. Hello, i feel that i noticed you visited my blog so i came to return the want?.I am attempting to to
    find issues to improve my site!I suppose its ok to make use of a few of your concepts!!

  3. 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 fast as yours lol

  4. Good day! I could have sworn I’ve visited your blog before
    but after browsing through some of the articles I realized it’s new to me.

    Nonetheless, I’m certainly delighted I came across it and I’ll be bookmarking
    it and checking back frequently!

  5. I truly love your site.. Pleasant colors & theme.
    Did you develop this amazing site yourself?

    Please reply back as I’m wanting to create
    my own personal blog and want to know where you got this
    from or exactly what the theme is named. Cheers!

  6. It’s the best time to make some plans for the long
    run and it’s time to be happy. I’ve learn this
    submit and if I may just I desire to recommend you some interesting things or advice.
    Maybe you can write next articles referring to this article.
    I want to learn even more things approximately it!

  7. I’m extremely impressed along with your writing abilities and
    also with the layout for your blog. Is this a paid topic or did you modify it your
    self? Either way keep up the excellent quality writing, it is rare to look a nice weblog like this one
    today..

  8. The other day, while I was at work, my cousin stole my iphone and tested to
    see if it can survive a forty 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 entirely off topic but I had to share it with someone!

  9. I am curious to find out what blog system you have been working with?
    I’m having some small security issues with my latest site and I’d
    like to find something more secure. Do you have any solutions?

  10. I don’t even understand how I finished up right here, but I thought this put up was great.
    I don’t know who you’re however definitely you’re going to
    a famous blogger if you happen to aren’t already. Cheers!

  11. I’ve been browsing online more than 2 hours today, yet I never found any interesting
    article like yours. It’s pretty worth enough for me.
    In my view, if all web owners and bloggers made good content
    as you did, the web will be a lot more useful than ever before.

  12. We are a group of volunteers and opening a new scheme in our community.
    Your web site provided us with valuable information to work
    on. You’ve done an impressive job and our entire community will
    be grateful to you.

  13. Every weekend i used to go to see this web site, as i
    want enjoyment, for the reason that this this site conations truly fastidious funny stuff too.

  14. Today, I went to the beach with my children. I found a sea shell and gave
    it to my 4 year old daughter and said “You can hear the ocean if you put this to your ear.” She put the shell to her ear and screamed.
    There was a hermit crab inside and it pinched her ear.
    She never wants to go back! LoL I know this is completely off topic but
    I had to tell someone!

  15. Very nice post. I just stumbled upon your weblog and wanted to mention that
    I have truly enjoyed browsing your weblog posts.
    In any case I’ll be subscribing on your feed and I’m hoping
    you write again very soon!

  16. If some one wants expert view about blogging and site-building afterward i propose him/her
    to pay a quick visit this web site, Keep up the pleasant work.

  17. I’m amazed, I have to admit. Seldom do I encounter a blog that’s
    equally educative and interesting, and let me tell you, you have hit the nail on the head.
    The issue is an issue that not enough men and women are speaking intelligently about.
    I am very happy I stumbled across this in my search for something concerning this.

  18. Hello, the whole thing is going perfectly here and ofcourse every one is
    sharing information, that’s in fact excellent, keep up writing.

  19. What’s Happening i am new to this, I stumbled upon this I’ve found It absolutely helpful and it has helped me out loads.
    I hope to contribute & help other users like its aided me.
    Great job.

  20. Have you ever thought about adding a little bit more than just your articles?
    I mean, what you say is valuable and everything. But imagine if you added some
    great photos or video clips to give your posts more, “pop”!
    Your content is excellent but with pics and videos, this blog could definitely be one
    of the best in its field. Superb blog!

  21. Excellent blog here! Also your site loads up fast! What host are you using?

    Can I get your affiliate link to your host?
    I wish my site loaded up as fast as yours lol

Comments are closed.