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,220 thoughts on “Contoh Soal Pemrograman – Pola Segitiga Siku-siku

  1. Hi there Dear, are you truly visiting this web page on a regular basis, if so then you will without doubt take good knowledge.

  2. Magnificent 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 idea

  3. It’s perfect time to make some plans for the long run and it’s time to be happy.

    I have read this publish and if I may I wish to suggest you few interesting issues
    or tips. Maybe you could write next articles regarding
    this article. I want to read more things about it!

  4. Greetings! Very useful advice within this post! It’s the little changes which will make the largest changes.

    Many thanks for sharing!

  5. Have you ever thought about writing an ebook or guest authoring on other blogs?

    I have a blog based upon on the same ideas you discuss and would really like to have you share some
    stories/information. I know my visitors would appreciate your work.
    If you’re even remotely interested, feel free to shoot me an e mail.

  6. What’s up to all, the contents existing at this web page are genuinely awesome for people knowledge, well,
    keep up the good work fellows.

  7. Hardcore Porn Videos
    Welcome to the best XXX adult porn website on the net! You are about to enter the wonderful world of Pornhub where you’ll find the most smokin’ girls and the hottest hardcore porn around! This place is every man’s fantasy I tell you! Some of these porn clips will keep you thrusting on your dick for hours! Not because you can’t release your load, but because you don’t want to stop watching these damn sex videos! Every hardcore video guarantees sexy girls and updated porn content daily! I must admit, its rare to find some solid hardcore porn now-a-days, but on Pornhub, you’ll find, by far, the biggest selection of sex and porn categories that you can imagine! Too good to be true? It gets BETTER! You get ALL this insane porn that will drive you absolutely wild for, get this, FREE! I can tell you honestly that I’ve spent endless amounts of hours just browsing the different types of hardcore videos on this thing and never ONCE was I disappointed my friends! That’s right, you guys are in for the ride of your life and Pornhub is here to give it to you right where you need it!

  8. Greetings I am so happy I found your blog, I really found you
    by error, while I was looking on Google for something else, Nonetheless I am here now
    and would just like to say thanks for a remarkable post
    and a all round interesting blog (I also love the theme/design), I don’t have time to
    go through it all at the minute but I have book-marked it and also included
    your RSS feeds, so when I have time I will be back to read more, Please do keep
    up the fantastic work.

  9. I know this if off topic but I’m looking into starting my own weblog and was wondering what all is required
    to get setup? I’m assuming having a blog like yours would cost
    a pretty penny? I’m not very web savvy so I’m not 100% positive.
    Any recommendations or advice would be greatly appreciated.
    Kudos

  10. Magnificent goods from you, man. I have understand your stuff
    previous to and you’re just extremely magnificent.
    I actually like what you have acquired here, certainly like
    what you are saying and the way in which you say it. You make it entertaining and you still care for to keep it wise.
    I can not wait to read much more from you. This is
    actually a wonderful web site.

  11. I am sure this piece of writing has touched all the internet viewers, its really really pleasant piece of
    writing on building up new website.

Comments are closed.