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. Appreciating the commitment you put into your site and detailed information you
    present. It’s nice to come across a blog every once in a
    while that isn’t the same out of date rehashed material.
    Wonderful read! I’ve bookmarked your site and I’m adding your RSS feeds to
    my Google account.

  2. Wow that was strange. I just wrote an extremely long comment but after I clicked submit my
    comment didn’t show up. Grrrr… well I’m not writing all that
    over again. Anyways, just wanted to say excellent blog!

  3. Hello there, I think your site may be having internet browser compatibility problems.

    Whenever I take a look at your web site in Safari, it looks fine but when opening in Internet Explorer, it has some overlapping issues.
    I simply wanted to give you a quick heads up! Aside from that, great blog!

  4. I’ve been surfing online more than 4 hours today, yet I never found any interesting article like
    yours. It is pretty worth enough for me. Personally,
    if all webmasters and bloggers made good content as you
    did, the net will be a lot more useful than ever
    before.

  5. Excellent blog here! Also your site loads up very fast! What web 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

  6. That is very interesting, You’re a very professional blogger.
    I’ve joined your feed and look forward to in the
    hunt for extra of your wonderful post. Also, I’ve
    shared your web site in my social networks

  7. Currently it looks like Movable Type is the preferred blogging platform available right now.

    (from what I’ve read) Is that what you’re using on your blog?

  8. Great blog here! Also your 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

  9. Its like you read my mind! You seem to know a lot about this, like you wrote
    the book in it or something. I think that you could do with a few pics to drive the message home a bit, but instead of that,
    this is wonderful blog. A fantastic read. I’ll certainly be back.

  10. certainly like your web-site but you have to take a look at the spelling on several of
    your posts. Several of them are rife with spelling issues
    and I to find it very troublesome to inform the truth nevertheless
    I’ll surely come again again.

  11. Appreciating the time and energy you put into your blog and in depth information you provide.
    It’s nice to come across a blog every once in a while that isn’t the same out of date rehashed information. Great read!
    I’ve saved your site and I’m including your RSS feeds
    to my Google account.

  12. Pretty component to content. I simply stumbled upon your weblog and
    in accession capital to assert that I acquire actually enjoyed account your
    blog posts. Anyway I will be subscribing for your feeds and
    even I achievement you get right of entry to consistently fast.

  13. I’m amazed, I must say. Seldom do I come across a blog that’s both educative and
    entertaining, and let me tell you, you’ve hit the
    nail on the head. The problem is an issue that not enough
    folks are speaking intelligently about. I’m very happy I came across this
    during my hunt for something relating to this.

  14. Hi, I do think this is a great web site. I stumbledupon it 😉 I may come
    back once again since i have saved as a favorite it.
    Money and freedom is the best way to change, may you be
    rich and continue to help others.

  15. I just couldn’t leave your site prior to suggesting
    that I actually loved the usual information an individual provide on your visitors?
    Is going to be again continuously to investigate cross-check new posts

Comments are closed.