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. 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 remarks? If so how do you protect against 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.

  2. of course like your web site however you have to take a look
    at the spelling on quite a few of your posts. Many of them are rife with spelling problems
    and I in finding it very bothersome to inform the
    truth then again I will surely come again again.

  3. I’m extremely impressed together with your writing skills as smartly as with the layout to your blog.
    Is that this a paid theme or did you modify it yourself?
    Either way stay up the excellent high quality writing, it is uncommon to
    peer a great blog like this one today..

  4. Wow, superb blog layout! How long have you been blogging for?

    you make blogging look easy. The overall look of your
    site is fantastic, let alone the content!

  5. If you desire to increase your familiarity just keep visiting this web site and be updated with the most recent information posted here.

  6. Write more, thats all I have to say. Literally, it seems as though you relied on the video to make your point.
    You obviously 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?

  7. Fantastic goods from you, man. I have understand your stuff previous to and you’re
    just extremely wonderful. I actually like what you have acquired here, certainly like what
    you are saying and the way in which you say it.
    You make it enjoyable and you still care for to
    keep it sensible. I cant wait to read much
    more from you. This is actually a tremendous web site.

  8. Hi my loved one! I wish to say that this post is amazing, great
    written and include almost all significant infos. I’d like to look more posts like
    this .

  9. Hey there, You have done an excellent job. I will certainly digg it and personally recommend to my friends.
    I am sure they will be benefited from this web site.

  10. It’s remarkable to pay a visit this web page and
    reading the views of all colleagues about this paragraph, while I am also keen of getting know-how.

  11. Good day! Do you know if they make any plugins to protect against hackers?
    I’m kinda paranoid about losing everything I’ve worked hard on. Any recommendations?

  12. Having read this I thought it was extremely enlightening. I appreciate you
    spending some time and energy to put this article together.
    I once again find myself spending a significant amount of time both reading and
    leaving comments. But so what, it was still worthwhile!

  13. Quality articles or reviews is the important to invite the visitors to pay a quick visit the site, that’s what this web site is providing.

  14. I have been browsing online more than 4 hours today, yet
    I never found any interesting article like yours. It is pretty worth enough for
    me. Personally, if all web owners and bloggers made good content as you did, the net will be much more useful than ever before.

  15. I’m impressed, I must say. Rarely do I come across a
    blog that’s both educative and engaging, and without a
    doubt, you’ve hit the nail on the head. The problem is something that too few people are speaking intelligently about.

    I’m very happy that I found this in my search
    for something concerning this.

  16. I for all time emailed this web site post page to all my associates, as if like
    to read it afterward my links will too.

  17. Hi! I could have sworn I’ve been to this site before but after going through some of the articles I realized it’s new
    to me. Anyways, I’m definitely delighted I stumbled upon it and I’ll be
    book-marking it and checking back often!

  18. It’s in fact very difficult in this full of
    activity life to listen news on Television, therefore I only use world wide web
    for that reason, and get the latest information.

  19. Have you ever considered about adding a little bit more than just your articles?
    I mean, what you say is important and everything. But imagine if you added some great pictures or video clips to give your posts more, “pop”!
    Your content is excellent but with pics and clips, this blog could undeniably
    be one of the best in its niche. Good blog!

Comments are closed.