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.

48,215 thoughts on “Contoh Soal Pemrograman – Pola Segitiga Siku-siku

  1. Hello there! I could have sworn I’ve been to this web site before but after going through some of the articles I realized it’s new to
    me. Anyhow, I’m definitely delighted I found it and I’ll be bookmarking it
    and checking back frequently!

  2. Hello there! Quick question that’s entirely off
    topic. Do you know how to make your site mobile friendly?

    My weblog looks weird when browsing from my iphone 4. I’m trying
    to find a theme or plugin that might be able to correct this issue.

    If you have any recommendations, please share.
    Appreciate it!

  3. We are a group of volunteers and opening a new scheme in our community.
    Your website offered us with valuable info to work
    on. You have done an impressive job and our entire community
    will be grateful to you.

  4. Hello just wanted to give you a quick heads up. The
    words in your content seem to be running off the screen in Chrome.
    I’m not sure if this is a format issue or
    something to do with internet browser compatibility but I figured I’d post to let you know.

    The design look great though! Hope you get the problem resolved soon. Kudos

  5. Excellent beat ! I wish to apprentice while you amend your web site, how could i subscribe for a weblog website?

    The account aided me a appropriate deal. I had been a little bit
    acquainted of this your broadcast offered bright clear idea

  6. Hi, Neat post. There is an issue together with
    your website in internet explorer, may check this? IE still is the marketplace chief and a large portion of people will
    leave out your fantastic writing because of this problem.

  7. Hello! This is my 1st comment here so I just
    wanted to give a quick shout out and tell
    you I genuinely enjoy reading your articles.
    Can you suggest any other blogs/websites/forums that cover the same subjects?
    Thanks a ton!

  8. It is perfect time to make some plans for the future and it’s time to be happy.

    I have read this post and if I could I wish to suggest you
    some interesting things or advice. Perhaps you can write next articles referring to this article.
    I want to read more things about it!

  9. Wow, incredible blog layout! How long have you been blogging for?

    you make blogging look easy. The overall look of your site
    is excellent, let alone the content!

  10. Hi, Neat post. There’s a problem with your website in web explorer, could check this?
    IE nonetheless is the market leader and a large element of people
    will leave out your magnificent writing because of this problem.

  11. Thanks on your marvelous posting! I really enjoyed reading it, you can be a great author.
    I will be sure to bookmark your blog and will often come back in the foreseeable future.

    I want to encourage you to definitely continue your great posts, have a nice day!

  12. We are a bunch of volunteers and starting a brand new scheme in our community.
    Your web site offered us with useful info to work on. You have done
    an impressive task and our whole community will likely be grateful
    to you.

  13. Hey there! Would you mind if I share your blog with my myspace group?
    There’s a lot of people that I think would really appreciate your content.
    Please let me know. Many thanks

  14. Heya i am for the primary time here. I found this board and
    I in finding It truly helpful & it helped me out much.
    I hope to give something again and aid others such as
    you aided me.

  15. My brother recommended I might like this web site. He was entirely right.
    This post truly made my day. You can not imagine just how much time I
    had spent for this info! Thanks!

  16. After going over a few of the blog articles on your web site, I seriously like your technique of blogging.
    I book marked it to my bookmark site list and will be checking back in the
    near future. Take a look at my web site too and let me know what you think.

  17. Wow, fantastic blog layout! How long have you been blogging
    for? you make blogging look easy. The overall look of your
    site is fantastic, let alone the content!

  18. My spouse and I stumbled over here from a different website and thought
    I might check things out. I like what I see so now
    i’m following you. Look forward to looking at your web page again.

  19. It’s perfect time to make a few plans for the
    future and it’s time to be happy. I have learn this submit and if I may just I desire to recommend you few interesting issues
    or advice. Maybe you could write subsequent articles relating to this article.
    I wish to learn more things approximately it!

  20. Hi there, just became alert to your blog through Google, and found that it’s
    truly informative. I’m going to watch out for brussels. I’ll appreciate
    if you continue this {in future}. A lot of people will be benefited from your writing.
    Cheers!

  21. Everyone loves what you guys tend to be up too.
    This type of clever work and reporting! Keep up the good works
    guys I’ve included you guys to blogroll.

  22. This design is spectacular! You definitely know how to keep a reader entertained.
    Between your wit and your videos, I was almost moved to start my own blog (well,
    almost…HaHa!) Fantastic job. I really loved what you had to say, and more than that,
    how you presented it. Too cool!

Comments are closed.