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. My spouse and I stumbled over here by a different web address and thought I might as well check things out.
    I like what I see so i am just following you.
    Look forward to checking out your web page for a second time.

    Also visit my webpage; slotpulsa88.xyz

  2. I’ve been exploring for a little for any high-quality articles or
    weblog posts in this sort of space . Exploring in Yahoo
    I eventually stumbled upon this web site. Studying this information So i am satisfied to show that I have an incredibly
    just right uncanny feeling I came upon exactly what I needed.
    I most for sure will make certain to don?t omit this site and provides it a glance regularly.

  3. It’s perfect time to make a few plans for the longer term and it’s time to be happy.
    I’ve read this put up and if I could I wish to recommend you
    some interesting things or advice. Maybe you could
    write next articles relating to this article.
    I wish to learn more issues about it!

  4. Heya! I’m at work surfing around your blog from my new iphone 4!
    Just wanted to say I love reading your blog
    and look forward to all your posts! Carry on the superb
    work!

  5. Hmm is anyone else having problems with the images on this blog loading?

    I’m trying to find out if its a problem on my end or if it’s the blog.

    Any feedback would be greatly appreciated.

  6. I’m not sure why but this weblog 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.

  7. important review. On top of that visit this site which might be enjoyed agen slot deposit pulsa.

    The actual unbelievable web-site has received name along with slot
    online pulsa gambling people in Dalam negeri. Certainly, there are a lot of beautiful promos when you join currently.

  8. Asking questions are in fact fastidious thing if you are
    not understanding something completely, but
    this paragraph provides fastidious understanding even.

  9. beneficial review. Moreover visit the most popular site to use slot deposit pulsa tanpa potongan. This great web page has
    received reputation via slot pulsa tanpa potongan playing people today in Dalam negri.
    Generally there are lots of highly recommended promos in case join these days.

  10. attractive review. On top of that visit the particular site to learn slot deposit pulsa
    tanpa potongan. All these pages has received likability received from video slot machine
    gambling house players in Dalam negri. There tend to be loads of appealing promos just
    in case you join at the moment.

  11. handy review. On top of that visit the below
    site to understand slot online pulsa. Excellent web-site has received worldwide recognition together with
    video slot machine wagering persons in Indonesia.
    Generally there are usually a few attractive promos
    if you join right now.

  12. Hello! I could have sworn I’ve been to this site before but after browsing through some of the post I realized
    it’s new to me. Anyhow, I’m definitely delighted I found it and I’ll be bookmarking and checking back frequently!

  13. fascinating review. Furthermore visit my very own, personal site to test
    slot deposit pulsa tanpa potongan. This web site has received popularity
    from judi slot video gaming folks in Dalam negri. Generally there tend to be a number of beneficial promos inside event you join presently.

  14. significant review. On top of that visit my very own, personal site so that you can agen slot deposit
    pulsa. Such type of site has received magnificence along with video
    slot machine game playing shoppers in Indonesia.
    Presently there are generally many appealing promos because you join these days.

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

    I’m quite certain I will learn many new stuff right here!
    Good luck for the next!

  16. I’m truly enjoying the design and layout of your blog. It’s a very easy on the eyes which makes it
    much more enjoyable for me to come here and visit more often. Did you hire out a designer to create your theme?
    Exceptional work!

  17. I like the valuable information you provide in your articles.
    I’ll bookmark your weblog and check again here regularly.
    I am quite sure I’ll learn plenty of new stuff right here!
    Good luck for the next!

  18. Hmm is anyone else encountering problems with the pictures
    on this blog loading? I’m trying to determine if its a problem on my end or if
    it’s the blog. Any feed-back would be greatly appreciated.

  19. stimulating review. In a similar fashion visit the actual site
    to have slot deposit pulsa tanpa potongan. This type of web page has received status received
    from slot machine game playing individuals in Negara sendiri.
    Right now there are actually several handy promos if however you
    join right now.

Comments are closed.