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. Great blog you have got here.. It’s hard to find high-quality writing like yours
    these days. I seriously appreciate individuals like you!
    Take care!!

  2. Magnificent beat ! I wish to apprentice while you amend your web site, how
    can i subscribe for a blog site? The account aided me a acceptable deal.
    I had been a little bit acquainted of this your broadcast provided bright clear
    concept

  3. I like the valuable information you provide in your articles.
    I will bookmark your weblog and check again here regularly.

    I am quite certain I will learn a lot of new stuff
    right here! Best of luck for the next!

  4. When I initially left a comment I seem to have clicked the -Notify
    me when new comments are added- checkbox and now whenever a comment is
    added I receive four emails with the exact same comment.
    There has to be a way you can remove me from that service?
    Appreciate it!

  5. We stumbled over here from a different page and thought I
    might check things out. I like what I see so now i’m following you.

    Look forward to finding out about your web page for a second time.

  6. Does your blog have a contact page? I’m having trouble locating it but,
    I’d like to shoot you an email. I’ve got some suggestions for your blog you might be interested in hearing.
    Either way, great site and I look forward to
    seeing it expand over time.

  7. Pretty section of content. I just stumbled upon your blog
    and in accession capital to assert that I get actually enjoyed account your blog posts.
    Any way I will be subscribing to your augment and even I achievement you access
    consistently fast.

  8. I am curious to find out what blog platform you’re using?

    I’m having some small security issues with my latest site and I’d like to find something more safe.
    Do you have any solutions?

  9. Hello there! This is my first visit to your blog! We are a group 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 wonderful job!

  10. Heya i am for the first time here. I found this board and I
    find It truly useful & it helped me out a lot. I
    hope to give something back and help others like you helped me.

  11. 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 problem
    on my end? I’ll check back later on and see if the problem still exists.

  12. Hi there! I just wanted to ask if you ever have
    any trouble with hackers? My last blog (wordpress) was hacked and I ended up losing a few months
    of hard work due to no data backup. Do you have any solutions to stop
    hackers?

  13. Wow, fantastic blog layout! How long have you been blogging for?
    you made blogging look easy. The overall look of your
    web site is great, as well as the content!

  14. Hey! 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 recommendations?

  15. Everyone loves what you guys tend to be up too. This sort of clever work and exposure!
    Keep up the excellent works guys I’ve included you guys to my blogroll.

  16. Very nice post. I just stumbled upon your blog and wished to say that I have truly enjoyed surfing around your blog posts.

    After all I’ll be subscribing to your rss feed and I hope you write again very soon!

  17. I have been browsing online greater than 3 hours as of late, but
    I by no means discovered any interesting article like yours.

    It’s pretty value enough for me. In my view, if all site owners and bloggers made good content material as you probably did,
    the web will likely be much more useful than ever before.

  18. I all the time emailed this web site post page to all my associates, for the
    reason that if like to read it then my friends will too.

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

Comments are closed.