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 do not even know how I stopped up here, but I
    assumed this publish was once good. I do not know who you might
    be but certainly you are going to a well-known blogger if you are not already.
    Cheers!

  2. Hello to all, how is all, I think every one is getting more from this web page, and your views are fastidious for new viewers.

  3. Its like you read my mind! You seem to know a lot about this, like you wrote the book in it or
    something. I think that you could do with a few pics to drive
    the message home a little bit, but other than that, this is great blog.
    An excellent read. I’ll definitely be back.

  4. Hello just wanted to give you a brief heads
    up and let you know a few of the images 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.

  5. Yesterday, while I was at work, my cousin stole my iphone
    and tested to see if it can survive a twenty five 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 completely off topic but I had to share it with someone!

  6. Hello to all, the contents present at this web site are in fact
    remarkable for people knowledge, well, keep up the nice work fellows.

  7. Hi, I do think this is a great web site. I stumbledupon it 😉 I am going to come back yet again since i
    have saved as a favorite it. Money and freedom is the best way to change, may you be rich and continue to help other people.

  8. Hi my loved one! I wish to say that this article
    is amazing, great written and come with approximately all significant
    infos. I’d like to peer extra posts like this .

  9. Heya i am for the first time here. I found this board
    and I find It truly helpful & it helped me out much. I am hoping to give one thing back and aid others
    like you aided me.

  10. Hi! I simply would like to offer you a big thumbs up
    for your great information you have got here on this post.
    I will be returning to your web site for more soon.

  11. It is appropriate time to make some plans for the long run and it’s time to be
    happy. I have learn this submit and if I may I wish to suggest you few fascinating issues
    or suggestions. Maybe you could write next articles referring to this article.
    I desire to read even more things approximately it!

  12. whoah this weblog is great i love studying your articles.
    Stay up the good work! You understand, many people are hunting round for this info,
    you could help them greatly.

  13. I am in fact grateful to the holder of this site who has
    shared this fantastic piece of writing at at
    this place.

  14. This is very interesting, You’re a very skilled blogger.
    I’ve joined your feed and look forward to seeking
    more of your great post. Also, I have shared your site in my social networks!

  15. Great blog here! Also your site loads up fast! What web host are you using?
    Can I get your affiliate link to your host? I wish my web site loaded up as fast as yours lol

  16. With havin so much content do you ever run into any issues of plagorism or copyright infringement?
    My site has a lot of completely unique content I’ve either authored myself or outsourced but it appears
    a lot of it is popping it up all over the internet without my permission. Do you know
    any ways to help protect against content from being ripped off?
    I’d definitely appreciate it.

  17. Howdy are using WordPress for your blog platform?

    I’m new to the blog world but I’m trying to get started and
    create my own. Do you need any coding expertise to make your own blog?
    Any help would be greatly appreciated!

  18. The other day, while I was at work, my sister stole my apple ipad and tested to see if it can survive a 25 foot
    drop, just so she can be a youtube sensation. My apple ipad is now
    destroyed and she has 83 views. I know this is entirely off topic but
    I had to share it with someone!

  19. great submit, very informative. I ponder why the opposite experts of this sector don’t realize this.
    You should continue your writing. I’m confident, you’ve a great readers’
    base already!

  20. I’ve read several excellent stuff here. Definitely price bookmarking
    for revisiting. I surprise how so much attempt
    you put to create the sort of fantastic informative site.

  21. Whats up this is somewhat of off topic but I was wondering if blogs
    use WYSIWYG editors or if you have to manually code with HTML.
    I’m starting a blog soon but have no coding experience so I wanted
    to get advice from someone with experience. Any help would be greatly appreciated!

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

  23. I have been surfing online more than 2 hours today, yet I never found any interesting article like yours.
    It’s pretty worth enough for me. In my opinion, if all web owners and bloggers made good content as you did,
    the net will be a lot more useful than ever before.

  24. Attractive section of content. I just stumbled upon your blog and in accession capital to assert
    that I get actually enjoyed account your blog posts.
    Any way I will be subscribing to your feeds and even I achievement
    you access consistently quickly.

  25. Hi, i read your blog occasionally 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 advise? I get so much lately it’s driving me mad so any
    assistance is very much appreciated.

Comments are closed.