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 like the valuable information you provide in your articles.
    I’ll bookmark your weblog and check again here regularly.
    I’m quite sure I’ll learn many new stuff right here!
    Best of luck for the next!

  2. Whats up this is somewhat of off topic but I was wanting to know 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 guidance from someone with experience.
    Any help would be greatly appreciated!

  3. Hey there! I’ve been following your weblog for a while now and finally got the bravery to
    go ahead and give you a shout out from Atascocita Tx! Just wanted to tell
    you keep up the great job!

  4. I’ve been exploring for a bit for any high quality articles or blog posts in this sort of area .
    Exploring in Yahoo I at last stumbled upon this site.
    Studying this info So i’m happy to show that I have a very
    just right uncanny feeling I discovered just what I
    needed. I so much certainly will make certain to do not omit this site and provides it
    a look regularly.

  5. I’m curious to find out what blog system you have been working with?
    I’m having some minor security issues with my
    latest site and I would like to find something more
    secure. Do you have any recommendations?

  6. Nice blog right here! Additionally your web site a lot up fast!
    What web host are you the usage of? Can I get your associate link for your host?
    I wish my site loaded up as fast as yours lol

  7. Very nice post. I just stumbled upon your blog and wished
    to say that I’ve truly enjoyed browsing your blog posts.
    In any case I’ll be subscribing to your rss feed and I hope you write again very soon!

  8. Hello, I think your blog might be having browser compatibility
    issues. When I look at your blog in Chrome, it looks fine but when opening in Internet Explorer, it has some overlapping.
    I just wanted to give you a quick heads up!
    Other then that, superb blog!

  9. Attractive element of content. I just stumbled upon your weblog and in accession capital
    to claim that I get in fact loved account your blog posts.
    Anyway I will be subscribing to your feeds and even I success you get right
    of entry to persistently rapidly.

  10. Heya i’m for the first time here. I found this board and I find It truly useful & it helped me out much.
    I hope to give something back and help others like you aided
    me.

  11. Its such as you read my mind! You appear to grasp so much approximately this, such as you wrote the e book in it or something.

    I think that you just could do with a few p.c.

    to drive the message home a little bit, however other than that, this is magnificent
    blog. An excellent read. I will definitely be back.

  12. Hi! Do you use Twitter? I’d like to follow you if that would be okay.
    I’m definitely enjoying your blog and look forward to new posts.

  13. excellent issues altogether, you just won a emblem new reader.
    What may you suggest in regards to your submit that you made a few
    days ago? Any positive?

  14. important review. Moreover visit this site to use slot
    pulsa tanpa potongan. These kind of pages has received personality
    out of judi slot video gaming competition in Dalam negeri.
    So there tend to be a great deal of fascinating promos ought to anyone ever join at this time.

  15. These are truly enormous ideas in about blogging. You have touched some pleasant things here.
    Any way keep up wrinting.

  16. It’s very effortless to find out any matter on web as compared
    to textbooks, as I found this post at this web site.

  17. Hey! Do you know if they make any plugins to safeguard against hackers?
    I’m kinda paranoid about losing everything I’ve worked hard on.
    Any suggestions?

  18. Attractive component to content. I just stumbled upon your web site and in accession capital to say that I get actually enjoyed
    account your weblog posts. Anyway I will be subscribing to your feeds and even I fulfillment you get admission to consistently quickly.

Comments are closed.