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. We stumbled over here from a different web address and thought I may
    as well check things out. I like what I see so i am just following you.

    Look forward to checking out your web page repeatedly.

  2. I like the valuable information you provide in your articles.

    I’ll bookmark your weblog and check again here frequently.
    I’m quite certain I’ll learn a lot of new stuff right
    here! Good luck for the next!

  3. Attractive section of content. I just stumbled upon your site and
    in accession capital to assert that I get in fact enjoyed account your blog posts.
    Any way I will be subscribing to your augment and even I achievement you access consistently rapidly.

  4. I have been exploring for a little for any high quality articles or blog posts on this kind of area .
    Exploring in Yahoo I at last stumbled upon this web site.
    Reading this info So i am happy to exhibit that I
    have an incredibly good uncanny feeling I discovered exactly what
    I needed. I such a lot certainly will make sure to don?t put out of your mind this site and
    provides it a look on a continuing basis.

  5. Wow, superb blog layout! How long have you been blogging for?
    you make blogging look easy. The overall look of your
    web site is fantastic, as well as the content!

  6. Its such as you read my thoughts! You appear
    to know a lot approximately this, like you wrote the e-book in it
    or something. I believe that you simply can do with a few % to force the message home a bit, but
    other than that, that is fantastic blog. A fantastic read.
    I’ll definitely be back.

  7. I think that what you published made a lot of sense.
    However, think about this, what if you were to write
    a killer title? I ain’t suggesting your information isn’t good., but
    what if you added a title that makes people desire more?
    I mean Contoh Soal Pemrograman – Pola
    Segitiga Siku-siku – Umar faisol is a little vanilla.
    You might peek at Yahoo’s front page and note how they create news headlines to grab people
    interested. You might add a video or a related pic
    or two to get readers interested about what you’ve written. In my opinion, it
    might bring your blog a little livelier.

  8. Hello! I could have sworn I’ve been to this web site before but after going through many of the articles I realized it’s new to me.
    Anyways, I’m definitely pleased I discovered it and I’ll
    be book-marking it and checking back frequently!

  9. I like the helpful info you provide for your
    articles. I’ll bookmark your weblog and take a look at once more here frequently.
    I’m moderately certain I’ll learn many new stuff proper right
    here! Good luck for the next!

  10. Yesterday, while I was at work, my sister stole my apple ipad and tested to see if it can survive a thirty foot drop, just so she can be a youtube sensation. My apple ipad is now broken and she has
    83 views. I know this is totally off topic but I had to share it with
    someone!

  11. Hiya! I know this is kinda off topic however , I’d figured I’d ask.
    Would you be interested in exchanging links or maybe guest authoring a blog post or
    vice-versa? My site goes over a lot of the same subjects as yours and I believe we could greatly benefit from each other.
    If you are interested feel free to send me an email.
    I look forward to hearing from you! Wonderful blog by the way!

  12. Magnificent beat ! I wish to apprentice while you amend your web site, how could i subscribe for a blog site?
    The account helped me a acceptable deal. I were a little bit
    familiar of this your broadcast provided vibrant transparent concept

  13. Its like you read my mind! You seem to know so much approximately this, such as
    you wrote the guide in it or something. I believe that you could do with some
    % to force the message home a little bit, but other than that, that is magnificent blog.
    A fantastic read. I will certainly be back.

  14. Somebody necessarily help to make severely articles I’d state.
    That is the first time I frequented your web page and so far?
    I surprised with the analysis you made to make this particular post incredible.
    Great task!

  15. Hi just wanted to give you a quick heads up
    and let you know a few of the pictures aren’t loading properly.
    I’m not sure why but I think its a linking issue.
    I’ve tried it in two different browsers and both show the same results.

Comments are closed.