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. Does your blog have a contact page? I’m having trouble locating it but, I’d like
    to send you an e-mail. I’ve got some ideas for your blog you
    might be interested in hearing. Either way, great
    blog and I look forward to seeing it improve over time.

  2. I blog quite often and I truly appreciate your information. The article
    has truly peaked my interest. I will bookmark your blog and keep checking
    for new details about once per week. I opted in for your
    Feed as well.

  3. Have you ever considered about adding a little bit more than just
    your articles? I mean, what you say is valuable and
    everything. However imagine if you added some great graphics or videos to give your posts more, “pop”!
    Your content is excellent but with images and videos, this blog could definitely be one
    of the very best in its niche. Fantastic blog!

  4. I savor, result in I found just what I used to be taking a look for.
    You’ve ended my four day long hunt! God Bless you
    man. Have a great day. Bye

  5. I’m amazed, I must say. Rarely do I encounter a blog that’s equally educative and entertaining, and without a doubt, you’ve hit the nail on the head.
    The problem is something which too few people are speaking intelligently about.
    I am very happy that I stumbled across this in my search for something concerning
    this.

  6. Heya i’m for the primary time here. I came across this board and I in finding It truly helpful & it helped me out a lot.
    I’m hoping to present something again and aid others like you helped me.

  7. I don’t even understand how I ended up here, however I believed this submit used
    to be great. I don’t recognize who you might be but definitely you’re going to a
    well-known blogger if you happen to aren’t already. Cheers!

  8. you are in point of fact a just right webmaster. The site loading speed is incredible.
    It sort of feels that you’re doing any distinctive trick.
    In addition, The contents are masterwork. you’ve performed a
    excellent job in this matter!

  9. Superb blog! Do you have any hints for aspiring writers? I’m
    planning to start my own site soon but I’m a little lost on everything.
    Would you suggest starting with a free platform like
    Wordpress or go for a paid option? There are so many choices out there that
    I’m completely overwhelmed .. Any suggestions?
    Kudos!

  10. Hmm it appears like your blog ate my first comment (it
    was extremely long) so I guess I’ll just sum it up what I wrote and say, I’m thoroughly enjoying your blog.
    I as well am an aspiring blog writer but I’m still new to everything.

    Do you have any tips and hints for novice blog writers?
    I’d definitely appreciate it.

  11. Appreciating the commitment you put into your site and in depth
    information you present. It’s good to come across a blog every once in a while that
    isn’t the same out of date rehashed information. Great read!
    I’ve bookmarked your site and I’m adding your RSS feeds to my Google account.

  12. I’m impressed, I must say. Seldom do I come across a blog that’s equally educative and interesting, and without a doubt, you’ve hit
    the nail on the head. The issue is something not enough people are speaking intelligently about.
    Now i’m very happy that I found this in my hunt for something
    concerning this.

  13. For most recent news you have to visit world-wide-web
    and on web I found this web site as a most excellent web site for most up-to-date
    updates.

  14. I’ve been browsing on-line greater than three hours these days, but
    I by no means found any interesting article like yours. It’s beautiful worth enough for me.
    In my opinion, if all webmasters and bloggers made just
    right content as you did, the internet will be much more useful than ever before.

  15. of course like your web site however you have to test the spelling on several
    of your posts. A number of them are rife with spelling issues and I in finding it very bothersome to tell
    the truth nevertheless I will certainly come again again.

  16. An intriguing discussion is definitely worth comment.
    I believe that you ought to publish more on this subject, it might not be a taboo matter but generally people don’t discuss these topics.
    To the next! All the best!!

  17. Wow, incredible blog layout! How long have you been blogging for?
    you made blogging look easy. The overall look of your web site
    is fantastic, let alone the content!

Comments are closed.