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. Hi there, i read your blog from time to time and i own a similar one and i was just curious if you get a lot of spam remarks?

    If so how do you stop it, any plugin or anything you can recommend?
    I get so much lately it’s driving me crazy
    so any support is very much appreciated.

  2. We are a gaggle of volunteers and opening a new scheme in our community.
    Your site provided us with valuable info to work on. You’ve done an impressive process and our entire group shall
    be grateful to you.

  3. When I initially commented I clicked the “Notify me when new comments are added” checkbox and now each time a comment is added I get three emails with the same comment.
    Is there any way you can remove me from that service?
    Appreciate it!

  4. important review. As well visit the following site to understand judi slot.
    Most of these pages has received title coming from game slot bet level of competition in Negara sendiri.
    At this time there will be lots of exciting promos when you join today.

  5. Every weekend i used to pay a visit this web site, for
    the reason that i wish for enjoyment, as this this web page conations truly pleasant funny stuff too.

  6. Every weekend i used to visit this web site, as i want enjoyment, as this
    this web page conations truly fastidious funny information too.

  7. Admiring the time and energy you put into your blog and detailed information you offer.

    It’s nice to come across a blog every once in a while that isn’t
    the same out of date rehashed information. Great read!
    I’ve saved your site and I’m adding your RSS feeds to my Google
    account.

  8. I’ve been browsing online more than three hours today,
    yet I never found any interesting article
    like yours. It’s pretty worth enough for me. Personally,
    if all site owners and bloggers made good content
    as you did, the web will be much more useful than ever before.

  9. I have been browsing online greater than three hours these days,
    yet I never discovered any fascinating article like yours.
    It’s beautiful worth enough for me. In my opinion, if all
    site owners and bloggers made excellent content material as you probably did, the net will likely be much more helpful than ever before.

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

  11. each time i used to read smaller posts that also clear their motive,
    and that is also happening with this paragraph which I am reading here.

  12. 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 valuable
    information to work on. You have done a marvellous job!

  13. A fascinating discussion is definitely worth comment.
    There’s no doubt that that you need to publish more on this issue, it may not
    be a taboo subject but generally folks don’t talk about these issues.

    To the next! All the best!!

  14. We’re a gaggle of volunteers and starting a new scheme in our community.
    Your web site provided us with helpful info to work on.
    You’ve performed an impressive process and our whole group can be grateful to you.

  15. Wow! This blog looks exactly like my old one! It’s on a entirely different topic
    but it has pretty much the same layout and design. Outstanding choice of colors!

  16. Hello there! I know this is kinda off topic but I’d figured I’d ask.
    Would you be interested in exchanging links or maybe guest authoring a
    blog article or vice-versa? My site goes over a lot of the same topics as yours and
    I believe we could greatly benefit from each other.
    If you might be interested feel free to shoot me an email.
    I look forward to hearing from you! Superb blog by the way!

Comments are closed.