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. I do not even know how I ended up here, but I thought this post was great.
    I do not know who you are but certainly you’re going to a famous blogger if you aren’t already 😉 Cheers!

    my webpage … judi slot online

  2. Your style is so unique compared to other folks I have read stuff from.

    I appreciate you for posting when you have the opportunity, Guess I will just
    bookmark this page.

  3. I don’t know whether it’s just me or if perhaps everybody else encountering issues
    with your blog. It looks like some of the written text on your posts
    are running off the screen. Can somebody else please comment and let me know if
    this is happening to them as well? This could be a issue with
    my web browser because I’ve had this happen previously.
    Kudos

  4. I loved as much as you will receive carried out right here.
    The sketch is attractive, your authored material stylish.
    nonetheless, you command get got an nervousness over that you wish be delivering the following.
    unwell unquestionably come further formerly again as exactly the same nearly very often inside case
    you shield this hike.

  5. Having read this I believed it was extremely enlightening.

    I appreciate you spending some time and energy to put this short article together.
    I once again find myself spending way too much time both reading and leaving comments.
    But so what, it was still worth it!

  6. I was wondering if you ever thought of changing the 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 1 or two pictures.
    Maybe you could space it out better?

  7. Good web site you have got here.. It’s difficult to find high quality writing like
    yours these days. I seriously appreciate individuals like you!

    Take care!!

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

  9. It’s a pity you don’t have a donate button! I’d most certainly
    donate to this brilliant blog! I suppose for now i’ll settle for bookmarking and adding your
    RSS feed to my Google account. I look forward to brand new updates and will share this blog with my Facebook group.

    Chat soon!

  10. important review. Aside from that visit often the site to find out slot pulsa.
    This amazing web page has received popularity from slot via pulsa gambling establishment people in Dalam negeri.
    There are usually loads of interesting promos
    if you join right this moment.

  11. With havin so much content do you ever run into any problems of plagorism or copyright violation? My
    blog has a lot of unique content I’ve either created myself or outsourced but it appears a lot of it is popping it up all
    over the web without my authorization. Do you know any techniques to
    help stop content from being stolen? I’d truly appreciate it.

  12. Everyone loves what you guys are usually up too. This sort of clever work and reporting!
    Keep up the great works guys I’ve added you guys to
    blogroll.

  13. Howdy! I could have sworn I’ve visited this site
    before but after going through a few of the articles I realized it’s new to
    me. Nonetheless, I’m definitely delighted I came across it and I’ll
    be bookmarking it and checking back frequently!

  14. Good day! Do you know if they make any plugins to safeguard
    against hackers? I’m kinda paranoid about losing everything
    I’ve worked hard on. Any tips?

  15. Hi my loved one! I wish to say that this post is amazing,
    nice written and come with almost all important infos. I would like to peer more posts like
    this .

  16. of course like your web site however you need to check the spelling on several of your posts.
    A number of them are rife with spelling problems and I to find
    it very bothersome to inform the reality on the other hand I will certainly come again again.

  17. I’m not sure why but this web site is loading very slow for me.
    Is anyone else having this problem or is it a issue on my end?
    I’ll check back later on and see if the problem still exists.

  18. Its not my first time to pay a quick visit this web site, i am
    visiting this web page dailly and obtain fastidious data from here all the time.

  19. I’ve been exploring for a bit for any high-quality articles or weblog
    posts in this sort of house . Exploring in Yahoo I finally stumbled upon this web site.

    Reading this information So i’m satisfied to express that I’ve
    an incredibly good uncanny feeling I came upon exactly what I needed.
    I so much surely will make sure to do not disregard this site and provides it
    a look regularly.

  20. Hello, this weekend is pleasant designed for me, for the reason that this
    point in time i am reading this fantastic informative paragraph here at my house.

  21. Hi there would you mind letting me know which hosting company you’re utilizing?
    I’ve loaded your blog in 3 different internet browsers and I must say this blog loads a lot faster then most.
    Can you suggest a good hosting provider at a reasonable price?
    Kudos, I appreciate it!

Comments are closed.