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. Wow, amazing weblog layout! How long have you ever been blogging for?
    you make blogging glance easy. The entire glance of your web site is great, let alone the content material!

  2. I’ve been exploring for a little bit for any high
    quality articles or blog posts on this sort of
    area . Exploring in Yahoo I ultimately stumbled upon this site.
    Studying this info So i am satisfied to express that I have a
    very just right uncanny feeling I discovered exactly what
    I needed. I so much without a doubt will make certain to don?t fail to
    remember this site and provides it a glance on a continuing basis.

  3. attractive review. Furthermore visit my personal favorite site to determine slot.
    Of which incredible web-site has received agreement from the game
    slot casino avid gamers in Indonesia. Right now there tend
    to be a lot of excellent promos in case you join appears to fall apart.

  4. Howdy, I think your site may be having web browser compatibility problems.
    When I look at your web site in Safari, it looks fine however when opening in I.E., it has some
    overlapping issues. I merely wanted to give you
    a quick heads up! Aside from that, wonderful blog!

  5. you’re actually a just right webmaster. The site loading speed is amazing.

    It kind of feels that you are doing any distinctive trick.
    In addition, The contents are masterpiece. you’ve done a excellent process in this subject!

  6. I like the valuable info you provide in your articles.
    I will bookmark your blog and check again here regularly. I’m quite sure I will learn lots of new stuff right here!
    Good luck for the next!

  7. Its like you read my mind! You appear to know a lot about this, like you wrote the book in it or something.
    I think that you could do with a few pics to drive the
    message home a little bit, but other than that, this is excellent blog.
    An excellent read. I’ll definitely be back.

  8. I do not even understand how I ended up here, however I thought this submit used to be great.
    I don’t recognise who you might be however
    definitely you are going to a famous blogger should you are not already.

    Cheers!

  9. I love what you guys tend to be up too. This type of clever work and coverage!
    Keep up the superb works guys I’ve added you guys to my own blogroll.

  10. What i do not realize is in reality how you are not actually a
    lot more neatly-liked than you may be right now.
    You’re so intelligent. You already know thus significantly in terms of this topic, made me for my part believe
    it from numerous numerous angles. Its like men and women are not interested except it’s something to accomplish with Girl gaga!
    Your own stuffs excellent. All the time deal
    with it up!

  11. 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 wonderful job!

  12. of course like your web-site however you have to take a look at the spelling on quite a few of your posts.

    Many of them are rife with spelling issues and I in finding it very troublesome to tell the reality nevertheless I will certainly
    come again again.

  13. constantly i used to read smaller articles which also clear their motive, and
    that is also happening with this post which I am reading here.

  14. I do not even understand how I stopped up here, however I thought this publish was
    good. I don’t realize who you are but definitely you
    are going to a well-known blogger for those who are not already.

    Cheers!

  15. Hi i am kavin, its my first occasion to commenting anywhere, when i read this piece of writing i thought
    i could also create comment due to this brilliant post.

  16. I do not even know how I ended up here, but I thought this post was great.
    I don’t know who you are but definitely you’re going to a
    famous blogger if you are not already 😉 Cheers!

  17. We stumbled over here coming from a different page and thought I might check things out.
    I like what I see so i am just following you. Look forward to finding out about your
    web page again.

  18. Hello, I think your blog might be having browser compatibility issues.
    When I look at your blog site in Opera, it looks fine
    but when opening in Internet Explorer, it has some overlapping.
    I just wanted to give you a quick heads up! Other then that, great blog!

  19. Howdy! Someone in my Myspace group shared this site with us so I
    came to give it a look. I’m definitely loving the information. I’m bookmarking and will be tweeting this to my followers!
    Great blog and great design.

Comments are closed.