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. important review. Furthermore visit the site that might be competed slot deposit pulsa.
    The particular internet site has received acceptance
    coming from slot machine casino other individuals in Dalam negeri.
    Presently there are lots of stimulating promos on the inside event you actually join nowadays.

  2. exciting review. On top of that visit my very own site to test
    slot deposit pulsa tanpa potongan. This kind of fabulous web-site
    has received reputation coming from slot via pulsa wagering people
    today in Indonesia. Generally there are actually a lot of appropriate promos as soon as
    you join these days.

  3. 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 nervousness 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 hike.

  4. Have you ever thought about including a little bit more than just your
    articles? I mean, what you say is valuable and everything.
    Nevertheless think about if you added some great images or videos to
    give your posts more, “pop”! Your content is excellent but with images
    and clips, this site could certainly be one of the very best in its niche.
    Superb blog!

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

  6. I loved as much as you will receive carried out right here.

    The sketch is tasteful, your authored subject matter stylish.

    nonetheless, you command get got an impatience over that you
    wish be delivering the following. unwell unquestionably come further formerly again as exactly the same nearly a lot
    often inside case you shield this hike.

  7. Its like you read my thoughts! You seem to grasp so much
    about this, like you wrote the e-book in it or something. I think that you simply
    could do with some p.c. to pressure the message house a bit, but other than that, this is magnificent blog.
    A great read. I’ll certainly be back.

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

  9. 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.

  10. 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.

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

  12. 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.

  13. 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.

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

  15. 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.

  16. Hi, i think that i saw you visited my blog so i came to “return the
    favor”.I am attempting to find things to enhance my site!I
    suppose its ok to use some of your ideas!!

  17. 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.

  18. 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.

  19. 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!

  20. 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.

Comments are closed.