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 loved as much as you’ll receive carried out
    right here. The sketch is attractive, your authored material stylish.
    nonetheless, you command get bought an impatience over that you wish be
    delivering the following. unwell unquestionably come further formerly again since exactly the same nearly very often inside case you shield
    this hike.

  2. I got this web site from my buddy who informed me regarding this web page and now this time I am browsing this web site and reading very informative posts at
    this place.

  3. I know this web page offers quality dependent
    posts and additional stuff, is there any other web
    page which presents these kinds of data in quality?

  4. I just could not go away your web site before suggesting that I actually enjoyed the usual info an individual
    supply in your guests? Is gonna be again incessantly to investigate cross-check new posts

  5. Its like you read my mind! You appear to know a lot about
    this, like you wrote the book in it or something.
    I think that you can do with some pics to drive the message home a bit,
    but other than that, this is great blog. A great read.
    I will certainly be back.

  6. Hi there all, here every one is sharing such familiarity, therefore it’s
    pleasant to read this webpage, and I used to go to
    see this web site daily.

  7. Write more, thats all I have to say. Literally, it seems as though you relied on the video to make your point.
    You clearly know what youre talking about, why waste your intelligence on just posting videos to
    your blog when you could be giving us something informative to read?

  8. Howdy, 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 comments?
    If so how do you prevent it, any plugin or anything you can suggest?

    I get so much lately it’s driving me crazy so any help is very much appreciated.

  9. Heya i’m for the first time here. I came across this board and I find It truly useful
    & it helped me out much. I’m hoping to present one thing again and help others like you aided me.

  10. Howdy! I could have sworn I’ve been to this site before but after browsing
    through many of the articles I realized it’s new to me.
    Nonetheless, I’m definitely pleased I came across it and I’ll be bookmarking it and checking back frequently!

  11. I have been exploring for a little bit for any high-quality articles or blog posts on this sort of house .
    Exploring in Yahoo I ultimately stumbled upon this site.
    Reading this info So i am happy to exhibit that I’ve an incredibly good uncanny feeling I discovered exactly what I needed.
    I so much for sure will make sure to don?t put
    out of your mind this site and give it a glance regularly.

  12. I know this web page offers quality depending articles
    and other information, is there any other web site which
    gives these kinds of stuff in quality?

  13. I have been browsing online greater than three hours lately, yet I never found any fascinating article like yours.
    It is lovely price enough for me. Personally, if all webmasters and bloggers made excellent content material as
    you probably did, the internet shall be a lot more useful than ever before.

  14. Hi would you mind letting me know which web host you’re utilizing?
    I’ve loaded your blog in 3 different web browsers and
    I must say this blog loads a lot quicker then most.
    Can you recommend a good hosting provider at a honest price?
    Kudos, I appreciate it!

  15. Today, while I was at work, my cousin stole my iphone 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!

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

  17. I am extremely impressed with your writing abilities and also
    with the format in your blog. Is this a paid topic or did you modify it yourself?
    Anyway keep up the excellent quality writing, it is rare to peer a nice blog like this
    one nowadays..

  18. Hello my family member! I wish to say that this post
    is amazing, great written and include approximately all significant infos.
    I’d like to peer extra posts like this .

  19. Howdy, i read your blog occasionally and i own a similar one and i was just wondering if you
    get a lot of spam remarks? If so how do you prevent it, any plugin or anything you can advise?
    I get so much lately it’s driving me mad so any help is very much appreciated.

  20. Write more, thats all I have to say. Literally, it seems as though you relied on the video to make your point.
    You clearly know what youre talking about, why waste your intelligence on just posting videos to your site when you
    could be giving us something enlightening to read?

  21. Hi! I just wanted to ask if you ever have any trouble with hackers?
    My last blog (wordpress) was hacked and I ended up losing a few
    months of hard work due to no back up. Do you have any
    solutions to prevent hackers?

  22. Hello friends, its impressive piece of writing regarding tutoringand completely defined, keep it up all the time.

Comments are closed.