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. My spouse and I stumbled over here coming
    from a different page and thought I should check things out.

    I like what I see so i am just following you. Look forward
    to going over your web page for a second time.

  2. I believe everything said made a ton of sense. However, think on this, suppose you were to write a killer headline?
    I am not saying your content isn’t good, however suppose you added a title that grabbed a
    person’s attention? I mean Contoh Soal Pemrograman –
    Pola Segitiga Siku-siku – Umar faisol is a little plain. You should look at Yahoo’s front page and see how they create news headlines to
    get people interested. You might add a related
    video or a related pic or two to grab people excited about what you’ve got to say.
    In my opinion, it might bring your posts a little bit more interesting.

  3. Link exchange is nothing else however it is just placing the other person’s blog link on your page at suitable place and other person will also
    do similar for you.

  4. I don’t even know the way I finished up right here, but I believed
    this post was once good. I don’t recognize who you might be however certainly you are going to
    a well-known blogger in case you are not already.
    Cheers!

  5. Hey there just wanted to give you a brief heads up and let you know
    a few of the pictures aren’t loading properly. I’m not sure why but I think its a linking issue.
    I’ve tried it in two different web browsers and both show
    the same results.

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

  7. Hi there everyone, it’s my first go to see at this web page,
    and article is actually fruitful designed for me, keep up posting such content.

  8. Whoa! This blog looks just like my old one! It’s on a completely
    different subject but it has pretty much the same page layout and design. Superb choice of colors!

  9. I am extremely impressed with your writing skills and also with the layout
    on your weblog. Is this a paid theme or did you modify it yourself?
    Either way keep up the excellent quality writing,
    it is rare to see a great blog like this one nowadays.

  10. I was curious if you ever considered changing the page layout
    of your site? Its very well written; I love what youve
    got to say. But maybe you could a little more in the way
    of content so people could connect with it better.
    Youve got an awful lot of text for only having one or 2
    images. Maybe you could space it out better?

  11. Hmm is anyone else having problems with the images on this blog loading?

    I’m trying to determine if its a problem on my end or if
    it’s the blog. Any suggestions would be greatly appreciated.

  12. I am extremely impressed with your writing talents and also
    with the structure in your blog. Is this a paid subject matter or
    did you modify it yourself? Either way keep up the
    nice quality writing, it’s rare to look a nice weblog like this one nowadays..

  13. What’s Happening i’m new to this, I stumbled upon this I
    have found It positively useful and it has aided me out loads.

    I am hoping to give a contribution & assist different
    customers like its helped me. Great job.

  14. What i do not realize is in truth how you’re no longer actually much more neatly-favored than you
    may be right now. You’re very intelligent. You
    realize thus significantly on the subject of this matter,
    made me personally believe it from numerous numerous angles.
    Its like men and women don’t seem to be involved except it’s
    something to accomplish with Girl gaga! Your personal stuffs great.
    All the time take care of it up!

  15. Hmm is anyone else encountering problems with the
    pictures on this blog loading? I’m trying to figure out if its
    a problem on my end or if it’s the blog. Any responses would be greatly appreciated.

  16. Howdy just wanted to give you a brief heads up and let
    you know a few of the pictures aren’t loading correctly.
    I’m not sure why but I think its a linking issue. I’ve tried it
    in two different internet browsers and both show the same
    results.

  17. certainly like your web site however you need to check the spelling on quite a few of your posts.
    Many of them are rife with spelling issues and I find it
    very bothersome to inform the reality then again I’ll definitely come again again.

  18. Pretty section of content. I just stumbled upon your site and
    in accession capital to assert that I get in fact enjoyed account your blog posts.
    Anyway I’ll be subscribing to your feeds and even I
    achievement you access consistently quickly.

  19. Hello! I’ve been following your site for a long time
    now and finally got the courage to go ahead and give you a shout out from Kingwood Texas!
    Just wanted to tell you keep up the great job!

Comments are closed.