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. Attractive section of content. I just stumbled upon your blog
    and in accession capital to assert that I acquire in fact enjoyed account your blog posts.
    Any way I’ll be subscribing to your feeds and even I achievement you access consistently rapidly.

  2. You could certainly see your skills in the article you write.
    The sector hopes for more passionate writers such as you who are not afraid to mention how they believe.
    All the time go after your heart.

  3. Hey there, You’ve done an incredible job. I’ll definitely digg it and personally suggest to my friends.
    I am confident they’ll be benefited from this site.

  4. With havin so much written content do you ever run into any issues of plagorism or copyright violation?
    My site has a lot of completely unique content I’ve either created myself or outsourced but it seems a lot of it is
    popping it up all over the internet without my authorization. Do you
    know any solutions to help prevent content from being ripped off?
    I’d truly appreciate it.

  5. Good information. Lucky me I ran across your blog by chance (stumbleupon).
    I’ve saved as a favorite for later!

  6. Having read this I thought it was very informative. I appreciate you finding
    the time and effort to put this informative article together.
    I once again find myself personally spending way too much time both reading and posting comments.
    But so what, it was still worthwhile!

  7. Hmm is anyone else having problems with the pictures on this blog loading?
    I’m trying to find out if its a problem on my end or if it’s the blog.

    Any responses would be greatly appreciated.

  8. Hey! Do you know if they make any plugins to assist
    with SEO? I’m trying to get my blog to rank for some targeted keywords but
    I’m not seeing very good gains. If you know of any please
    share. Kudos!

  9. It’s going to be finish of mine day, except before finish I am reading this impressive piece of writing to improve my know-how.

  10. I’ve been browsing online more than three hours today, yet I
    never found any interesting article like yours. It’s pretty worth enough
    for me. In my opinion, if all web owners and
    bloggers made good content as you did, the
    net will be a lot more useful than ever before.

  11. Have you ever thought about adding a little bit more than just your articles?
    I mean, what you say is important and everything.
    But think about if you added some great photos or videos to give your posts more, “pop”!
    Your content is excellent but with images and videos, this site could certainly be one of the
    most beneficial in its niche. Very good blog!

  12. Wow, fantastic blog layout! How lengthy have you been blogging for?
    you make running a blog look easy. The total look of
    your web site is great, let alone the content!

  13. wonderful issues altogether, you just received a emblem new reader.
    What may you recommend in regards to your put up that you just made some days ago?
    Any positive?

  14. Hey just wanted to give you a quick heads up. The words in your article seem to be
    running off the screen in Firefox. I’m not sure
    if this is a format issue or something to do with internet browser compatibility but I figured I’d post to
    let you know. The layout look great though!
    Hope you get the problem solved soon. Cheers

  15. I’ve been exploring for a little bit for any
    high quality articles or blog posts in this
    kind of house . Exploring in Yahoo I ultimately stumbled upon this web site.
    Reading this info So i am satisfied to convey that I’ve a very just right
    uncanny feeling I discovered exactly what I needed.
    I most indisputably will make sure to don?t disregard
    this web site and provides it a look on a
    continuing basis.

  16. I love what you guys are usually up too. This kind of clever work and coverage!
    Keep up the fantastic works guys I’ve included
    you guys to my blogroll.

  17. Wow, wonderful blog format! How long have you been blogging for?
    you made running a blog look easy. The overall glance of your web site is fantastic,
    let alone the content material!

  18. Heya i’m for the first time here. I came across this board and I find It
    truly useful & it helped me out a lot. I hope to give something back and aid others like you aided me.

  19. Hi just wanted to give you a quick heads up and let you know a few of the images 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.

  20. I’ve been exploring for a bit for any high quality articles or weblog posts in this kind of area .
    Exploring in Yahoo I at last stumbled upon this site. Reading this information So i am glad to express that I’ve an incredibly excellent uncanny feeling I discovered exactly what
    I needed. I so much undoubtedly will make sure to don?t fail to remember this site and provides it a glance regularly.

Comments are closed.