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 have been exploring for a little for any high quality articles or
    blog posts on this sort of house . Exploring in Yahoo
    I at last stumbled upon this web site. Reading this info So i am happy to exhibit that
    I’ve an incredibly excellent uncanny feeling I found out just what I needed.
    I so much indisputably will make sure to don?t put
    out of your mind this web site and provides it a glance regularly.

  2. I like what you guys are usually up too. This kind of clever work and reporting!
    Keep up the terrific works guys I’ve included you guys to blogroll.

  3. No matter if some one searches for his essential thing, therefore
    he/she wishes to be available that in detail, therefore that thing is maintained over
    here.

  4. Hmm is anyone else having 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 suggestions would be greatly appreciated.

  5. important review. On top of that visit the exact site to get down agen slot pulsa.
    This kind of web page has received i just. d. with video slot gambling patients in Dalam negeri.

    Right now there will be various advisable promos any time
    you join right now.

  6. fascinating review. At the same time visit often the site to understand agen slot
    deposit pulsa. These kinds of pages has received realization from the slot via pulsa gambling members in Negara sendiri.
    In that respect there tend to be numerous great promos by simply
    chance people join presently.

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

  8. Someone essentially assist to make significantly articles
    I might state. That is the very first time I frequented your web page and to this point?
    I surprised with the analysis you made to create this particular put up amazing.
    Wonderful job!

  9. I don’t even know how I ended up right here,
    but I thought this put up was once great. I don’t recognise who you are but certainly you’re going to a well-known blogger
    when you aren’t already. Cheers!

  10. exciting review. Far too visit the best site that may be played situs slot online.
    This amazing site has received attractiveness using slot bet members in Dalam negri.
    In that respect there are lots of interesting promos whenever you
    join at the moment.

  11. It’s actually very difficult in this full of activity life to listen news on Television, thus I only use world wide web for that reason, and get the newest news.

  12. Right here is the right site for anybody who wishes
    to understand this topic. You understand so much its almost hard to argue
    with you (not that I actually would want to…HaHa).
    You certainly put a fresh spin on a topic which
    has been written about for years. Great stuff, just excellent!

  13. I’m curious to find out what blog system you’re utilizing?
    I’m having some minor security problems with my latest site and I would like to find something more safeguarded.
    Do you have any suggestions?

  14. I loved as much as you will receive carried out right
    here. The sketch is attractive, your authored subject matter stylish.
    nonetheless, you command get got an edginess over that you wish be delivering the following.

    unwell unquestionably come more formerly again since exactly the
    same nearly very often inside case you shield this increase.

  15. intriguing review. Furthermore visit my favorite site to
    find out slot via pulsa. Great internet site has received acceptance
    from the slot via pulsa gambling house members in Indonesia.
    At this time there tend to be numerous brain turning promos cleaning soap join now.

  16. The other day, while I was at work, my sister
    stole my iPad and tested to see if it can survive a 40 foot
    drop, just so she can be a youtube sensation. My iPad is now destroyed and she
    has 83 views. I know this is completely off topic but I had to share it with
    someone!

  17. Someone necessarily lend a hand to make seriously articles I
    might state. That is the first time I frequented your web page and thus far?

    I amazed with the research you made to create this actual
    post extraordinary. Magnificent activity!

  18. Everyone loves what you guys are usually up too.
    This sort of clever work and coverage! Keep up
    the superb works guys I’ve included you guys to my blogroll.

Comments are closed.