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. Good day! Do you use Twitter? I’d like to follow you if that would be ok.
    I’m definitely enjoying your blog and look forward
    to new posts.

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

  3. Currently it sounds like BlogEngine is the best blogging platform out there right now.

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

  4. Wonderful beat ! I would like to apprentice while you amend your web site, how can i subscribe for a blog
    web site? The account aided me a acceptable deal.
    I had been tiny bit acquainted of this your broadcast offered bright clear concept

  5. Great goods from you, man. I have understand your stuff previous to and you are just extremely great.
    I actually like what you have acquired here, certainly like what you are stating and the way in which you say it.
    You make it enjoyable and you still take care of
    to keep it wise. I cant wait to read far more from you. This
    is actually a wonderful site.

  6. Its such as you learn my thoughts! You appear
    to grasp a lot about this, such as you wrote the e-book in it or
    something. I feel that you simply can do with a
    few percent to pressure the message home a bit, but instead of that, this is fantastic blog.
    An excellent read. I will definitely be back.

  7. I’m amazed, I have to admit. Rarely do I come across a blog that’s equally educative and interesting, and without a doubt, you have hit the nail on the head.
    The issue is something which too few folks are speaking intelligently about.
    I am very happy I came across this in my search for something
    relating to this.

  8. Howdy, i read your blog occasionally and i own a similar one and i
    was just curious if you get a lot of spam comments? If so
    how do you reduce it, any plugin or anything you can advise?

    I get so much lately it’s driving me insane so any assistance
    is very much appreciated.

  9. I savor, lead to I found just what I used to be taking a
    look for. You’ve ended my four day lengthy hunt! God Bless you man. Have a great
    day. Bye

  10. Great blog you have got here.. It’s hard to find high-quality writing like yours
    these days. I seriously appreciate individuals like you!
    Take care!!

  11. Magnificent beat ! I wish to apprentice while you amend your web site, how
    can i subscribe for a blog site? The account aided me a acceptable deal.
    I had been a little bit acquainted of this your broadcast provided bright clear
    concept

  12. I like the valuable information you provide in your articles.
    I will bookmark your weblog and check again here regularly.

    I am quite certain I will learn a lot of new stuff
    right here! Best of luck for the next!

  13. When I initially left a comment I seem to have clicked the -Notify
    me when new comments are added- checkbox and now whenever a comment is
    added I receive four emails with the exact same comment.
    There has to be a way you can remove me from that service?
    Appreciate it!

  14. We stumbled over here from a different page and thought I
    might check things out. I like what I see so now i’m following you.

    Look forward to finding out about your web page for a second time.

  15. Does your blog have a contact page? I’m having trouble locating it but,
    I’d like to shoot you an email. I’ve got some suggestions for your blog you might be interested in hearing.
    Either way, great site and I look forward to
    seeing it expand over time.

  16. Pretty section of content. I just stumbled upon your blog
    and in accession capital to assert that I get actually enjoyed account your blog posts.
    Any way I will be subscribing to your augment and even I achievement you access
    consistently fast.

  17. I am curious to find out what blog platform you’re using?

    I’m having some small security issues with my latest site and I’d like to find something more safe.
    Do you have any solutions?

Comments are closed.