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’m not sure why but this blog is loading incredibly slow for
    me. Is anyone else having this problem or is it a issue on my end?
    I’ll check back later and see if the problem still exists.

  2. Hello! This is my first visit to your blog! We are a collection of
    volunteers and starting a new initiative in a community in the same niche.
    Your blog provided us useful information to work on. You have done a outstanding job!

  3. Attractive portion of content. I simply stumbled upon your web site and in accession capital to assert that I get actually enjoyed account
    your weblog posts. Any way I’ll be subscribing in your feeds or even I fulfillment you access persistently fast.

  4. Hi there just wanted to give you a quick heads up.
    The words in your content seem to be running off the screen in Internet explorer.
    I’m not sure if this is a format issue or something to do with web browser compatibility but I figured I’d
    post to let you know. The design and style look great though!
    Hope you get the problem solved soon. Kudos

  5. Howdy! 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 suggestions?

  6. exhilarating review. Also visit the site to experiment with
    slot pulsa tanpa potongan. This web site has received acceptance from agen slot deposit pulsa gambling associates in Dalam negeri.
    At this time there are generally plenty of stunning promos if you ever join at this time.

  7. Hmm is anyone else encountering 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 responses would be greatly appreciated.

  8. 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 problems and I in finding it
    very troublesome to inform the truth nevertheless I’ll definitely come again again.

  9. I just like the valuable info you supply to your articles.
    I’ll bookmark your blog and check once more here frequently.
    I am somewhat certain I will be told a lot of new stuff right here!

    Good luck for the next!

  10. I blog frequently and I seriously appreciate your
    information. Your article has truly peaked my interest.

    I’m going to bookmark your site and keep checking for new details about once per week.
    I subscribed to your Feed too.

  11. Hi! I could have sworn I’ve visited your blog before
    but after going through some of the articles I realized it’s new to me.
    Anyways, I’m definitely happy I stumbled upon it and I’ll be bookmarking it and checking back frequently!

  12. Having read this I believed it was very enlightening.
    I appreciate you finding the time and energy to put
    this short article together. I once again find myself personally spending a significant amount of time both reading and leaving comments.
    But so what, it was still worth it!

  13. It’s appropriate time to make some plans for the longer term and it’s time to be happy.
    I’ve learn this post and if I may just I desire to suggest you few attention-grabbing things or suggestions.
    Perhaps you can write next articles relating to this article.
    I want to learn even more things about it!

  14. I like the valuable info you provide on your articles.

    I’ll bookmark your weblog and test once more right here frequently.

    I am moderately certain I’ll be told many new stuff
    right here! Good luck for the next!

  15. Hi! Do you know if they make any plugins
    to protect against hackers? I’m kinda paranoid about losing
    everything I’ve worked hard on. Any suggestions?

  16. This is very fascinating, You’re an overly skilled blogger.
    I’ve joined your rss feed and look forward to seeking extra of your excellent post.
    Additionally, I’ve shared your web site in my social networks

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

  18. Wow, marvelous blog layout! How long have you been blogging for?
    you made blogging look easy. The overall look of your web site is magnificent, let alone the
    content!

  19. Useful info. Fortunate me I discovered your site unintentionally, and I am surprised why this twist of fate did not took place earlier!
    I bookmarked it.

  20. Hello to all, how is all, I think every one is getting more from this web site, and your views are good in favor
    of new people.

Comments are closed.