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. With havin so much content do you ever run into any issues of plagorism or copyright violation? My blog has a lot of unique
    content I’ve either created myself or outsourced but it looks like a lot of it is popping it up all
    over the web without my permission. Do you know any methods to help prevent
    content from being stolen? I’d certainly appreciate
    it.

  2. We are a group of volunteers and opening a new scheme in our
    community. Your site offered us with valuable info to work on. You’ve done an impressive job and our
    whole community will be grateful to you.

  3. Hello, i read your blog from time to time and i own a similar one and i
    was just wondering if you get a lot of spam comments?
    If so how do you protect against it, any plugin or anything you can suggest?
    I get so much lately it’s driving me insane so any assistance is very
    much appreciated.

  4. all the time i used to read smaller posts which as well clear their
    motive, and that is also happening with this post which I am
    reading at this place.

  5. Howdy! Do you know if they make any plugins to help with Search Engine Optimization? I’m trying to get my blog to rank for some targeted keywords but I’m
    not seeing very good results. If you know of any please
    share. Appreciate it!

  6. Good day! 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 beneficial information to
    work on. You have done a extraordinary job!

  7. Admiring the dedication 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 unwanted rehashed material. Great read!

    I’ve saved your site and I’m adding your RSS feeds to my Google account.

  8. Hi would you mind letting me know which web host you’re working with?
    I’ve loaded your blog in 3 completely different web browsers and I
    must say this blog loads a lot quicker then most. Can you suggest a good internet hosting provider at a fair price?
    Cheers, I appreciate it!

  9. interesting review. Aside from that visit my very own site to determine judi
    slot. These pages has received reputation by situs slot online video gaming participants in Dalam negeri.

    At this time there tend to be many a lot more pleasing promos in the event you join at the
    moment.

  10. Hey there! I could have sworn I’ve been to this site before but after reading through some
    of the post I realized it’s new to me. Anyhow,
    I’m definitely delighted I found it and I’ll be book-marking and checking back frequently!

  11. I don’t even know the way I finished up right here, however I believed this
    publish was once good. I do not recognise who you’re however definitely you’re going to a well-known blogger should you
    are not already. Cheers!

  12. Hi every one, here every person is sharing these kinds of
    experience, therefore it’s good to read this blog, and I used to pay
    a visit this webpage everyday.

  13. Hello it’s me, I am also visiting this site on a regular basis, this web page
    is actually pleasant and the visitors are actually sharing
    nice thoughts.

  14. When I originally commented I clicked the “Notify me when new comments are added” checkbox and now each time a comment is added
    I get three e-mails with the same comment. Is there any way you can remove people from that service?
    Bless you!

  15. My family all the time say that I am wasting my time
    here at net, but I know I am getting know-how every day by
    reading such pleasant articles or reviews.

  16. Hello, i read your blog occasionally and i own a similar
    one and i was just wondering if you get a lot of spam
    responses? If so how do you reduce it, any plugin or anything you can recommend?
    I get so much lately it’s driving me mad so any assistance is very much appreciated.

  17. Hey there! I understand this is somewhat off-topic but I needed to ask.
    Does running a well-established blog like yours take a lot
    of work? I’m completely new to running a blog however I do write in my journal every day.
    I’d like to start a blog so I will be able to share my personal experience and feelings online.
    Please let me know if you have any kind of ideas or tips for brand new aspiring bloggers.
    Appreciate it!

  18. Its such as you learn my thoughts! You seem to understand a lot about this, such as you wrote the guide in it or something.
    I believe that you could do with some p.c. to power the message
    home a little bit, however instead of that, this is fantastic blog.
    An excellent read. I will certainly be back.

  19. Asking questions are actually pleasant thing if you are not understanding anything completely, except this
    article provides nice understanding yet.

Comments are closed.