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. The other day, while I was at work, my cousin stole my iPad and tested to
    see if it can survive a thirty foot drop, just so she can be a youtube sensation.
    My iPad is now broken and she has 83 views. I know this is entirely off topic but I had to share it with someone!

  2. Wow! This blog looks just like my old one! It’s on a totally
    different subject but it has pretty much the same layout and design. Wonderful choice of colors!

  3. Hi i am kavin, its my first time to commenting anywhere, when i read this piece of writing i thought i could
    also create comment due to this sensible post.

  4. Link exchange is nothing else except it is simply
    placing the other person’s webpage link on your
    page at proper place and other person will also do similar in support of you.

  5. Hello there! This is my first visit to your blog!
    We are a group of volunteers and starting a new project in a
    community in the same niche. Your blog provided us beneficial information to work on. You have done a wonderful job!

  6. 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
    weblog when you could be giving us something informative to read?

  7. I don’t know if it’s just me or if everyone else experiencing problems
    with your site. It appears as though some of the text in your posts are running off the
    screen. Can someone else please comment and let me know if
    this is happening to them as well? This could be a problem
    with my web browser because I’ve had this happen previously.
    Cheers

  8. Quality articles or reviews is the secret to be a
    focus for the viewers to pay a quick visit the web site,
    that’s what this web site is providing.

  9. When I initially commented I clicked the “Notify me when new comments are added” checkbox and
    now each time a comment is added I get three e-mails with the same comment.

    Is there any way you can remove people from that service?
    Cheers!

  10. Does your site have a contact page? I’m having a tough time locating it but, I’d like to
    shoot you an e-mail. I’ve got some ideas for your blog you might be interested
    in hearing. Either way, great site and I look forward to seeing it
    grow over time.

  11. Howdy, i read your blog from time to time and i own a similar one and i was just wondering if you get
    a lot of spam remarks? If so how do you prevent it, any plugin or anything you can suggest?
    I get so much lately it’s driving me crazy so any help is very much appreciated.

  12. Heya! I just wanted to ask if you ever have any trouble with hackers?
    My last blog (wordpress) was hacked and I ended up losing months of hard work due to no back up.
    Do you have any solutions to stop hackers?

  13. This is very attention-grabbing, You are an overly professional blogger.
    I’ve joined your feed and look forward to in quest of more of your great post.
    Additionally, I’ve shared your web site in my social networks

  14. We stumbled over here different page and thought I might as well check things out.
    I like what I see so now i’m following you. Look forward to exploring your web page yet again.

  15. Hey there! Someone in my Facebook group shared this site with us so I came to look it over.

    I’m definitely loving the information. I’m bookmarking and will be tweeting this to my followers!
    Excellent blog and excellent design.

  16. Its like you learn my thoughts! You seem to know so
    much approximately this, like you wrote the book in it or something.
    I feel that you just could do with a few p.c. to power the message house a bit,
    however other than that, that is magnificent blog. A fantastic read.
    I will definitely be back.

  17. Howdy, i read your blog occasionally and i own a similar one
    and i was just wondering if you get a lot of spam comments?

    If so how do you reduce it, any plugin or anything you can recommend?
    I get so much lately it’s driving me crazy so any help is very much appreciated.

  18. What’s Going down i am new to this, I stumbled upon this I’ve found
    It positively helpful and it has helped me out loads. I’m hoping to contribute & help other users like its helped me.
    Great job.

  19. I just like the helpful information you supply on your articles.
    I will bookmark your weblog and test once more right
    here regularly. I am quite certain I’ll be told many new stuff proper
    right here! Best of luck for the following!

Comments are closed.