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. Hello everyone, it’s my first go to see at this
    web page, and piece of writing is truly fruitful in support of me,
    keep up posting such articles or reviews.

  2. Hi to all, how is all, I think every one is getting more from this web page, and your views are
    nice in favor of new visitors.

  3. Howdy! I’m at work browsing your blog from my new apple
    iphone! Just wanted to say I love reading through your blog and
    look forward to all your posts! Carry on the great work!

  4. Hi are using WordPress for your blog platform?
    I’m new to the blog world but I’m trying to get started and set up my own. Do you need any coding knowledge to make your own blog?

    Any help would be greatly appreciated!

  5. That is a very good tip especially to those fresh to the blogosphere.
    Simple but very precise information… Appreciate your sharing
    this one. A must read article!

  6. I like the helpful info you provide in your articles. I will bookmark your blog and check again here frequently.
    I am quite sure I’ll learn lots of new stuff right here!

    Best of luck for the next!

  7. I like the helpful information you provide in your articles.
    I’ll bookmark your weblog and check again here regularly.
    I am quite sure I’ll learn lots of new stuff right here! Best of
    luck for the next!

  8. 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.

  9. 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?

  10. 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?

  11. 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

  12. 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.

  13. 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.

  14. 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.

  15. 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.

  16. 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

Comments are closed.