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 site have a contact page? I’m having problems locating it but, I’d like to send you an email.
    I’ve got some recommendations for your blog you might be interested in hearing.

    Either way, great blog and I look forward to seeing it expand over time.

  2. Hmm is anyone else experiencing problems with the pictures
    on this blog loading? I’m trying to find out if its a
    problem on my end or if it’s the blog. Any feed-back would be greatly
    appreciated.

  3. Preetty section of ϲontent. I juѕt stumbled upon your web site ɑnd in accession capital t᧐ assert tһat I get aϲtually enjoyed account
    ʏour blog posts. Anny ѡay I’ll be subscribing to
    your augment aand even I achievement уߋu access consistently fast.

    Feel free to surf to mmy web page: 読み続けてください

  4. It’s actually very difficult in this active life to listen news on TV,
    thus I simply use internet for that reason, and take the latest news.

  5. Currently it appears like WordPress is the best blogging platform out there
    right now. (from what I’ve read) Is that what you are using
    on your blog?

  6. Link exchange is nothing else except it is just placing the other person’s webpage
    link on your page at suitable place and other person will also do similar in favor of you.

  7. I do not even understand how I stopped up right here, but
    I believed this put up was good. I do not realize who you’re
    however certainly you are going to a famous blogger
    if you aren’t already. Cheers!

  8. After exploring a few of the blog articles on your web page, I honestly
    like your way of blogging. I added it to my bookmark
    webpage list and will be checking back soon. Please check out my web
    site too and tell me how you feel.

  9. Wow, fantastic weblog structure! How lengthy have you ever been running a blog for?

    you make blogging look easy. The entire glance of your web site
    is magnificent, let alone the content!

  10. Hey! I could have sworn I’ve been to this blog before but after reading through some of the post I realized it’s new to me.
    Anyways, I’m definitely glad I found it and I’ll be
    bookmarking and checking back often!

  11. I like what you guys are usually up too.
    This type of clever work and exposure! Keep up the superb works guys I’ve added you
    guys to our blogroll.

  12. What’s up, I want to subscribe for this blog
    to take most up-to-date updates, thus where can i do
    it please help out.

  13. In fact when someone doesn’t understand afterward its up
    to other people that they will assist, so here it takes place.

  14. Hello! I understand this is somewhat off-topic however I needed to
    ask. Does running a well-established blog like yours require a lot of work?
    I am completely new to blogging however I do write
    in my diary daily. I’d like to start a blog so I can share my experience and feelings online.

    Please let me know if you have any kind of suggestions
    or tips for new aspiring bloggers. Appreciate it!

  15. 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 throw away your intelligence on just posting videos to your weblog when you could
    be giving us something enlightening to read?

  16. Excellent blog you have got here.. It’s difficult to find good quality
    writing like yours these days. I seriously appreciate people like
    you! Take care!!

  17. Hi there to every body, it’s my first pay a quick visit of
    this web site; this blog carries amazing and in fact fine
    information in favor of readers.

  18. Hello to every body, it’s my first pay a visit of this web site;
    this weblog contains remarkable and truly good material in favor of visitors.

  19. What’s up Dear, are you in fact visiting this web
    page on a regular basis, if so after that you will without doubt take
    nice experience.

  20. Pretty part of content. I just stumbled upon your site and in accession capital to assert that
    I acquire in fact loved account your weblog posts. Anyway I will
    be subscribing in your feeds and even I achievement you get entry to persistently rapidly.

Comments are closed.