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. Very great post. I simply stumbled upon your weblog and wanted to mention that I have truly loved browsing your weblog posts.

    After all I will be subscribing for your feed and I’m hoping you write once more soon!

  2. That is very interesting, You are an overly skilled blogger.
    I have joined your rss feed and sit up for searching for more of your great
    post. Additionally, I’ve shared your site in my social networks

  3. I was curious if you ever considered changing the layout of
    your site? Its very well written; I love what youve got to say.
    But maybe you could a little more in the way of content so
    people could connect with it better. Youve got an awful lot of text for only having one or two
    pictures. Maybe you could space it out better?

  4. Hmm it looks like your blog ate my first comment (it was super long) so I guess I’ll just sum it up what I wrote and say, I’m thoroughly enjoying your blog.

    I too am an aspiring blog blogger but I’m still new to the whole thing.
    Do you have any recommendations for beginner blog writers?
    I’d definitely appreciate it.

  5. Hello, everything is going fine here and ofcourse every one is sharing information, that’s actually fine, keep up writing.

  6. I like the helpful information you provide in your articles.
    I will bookmark your weblog and check again here frequently.
    I’m quite sure I’ll learn many new stuff right here! Good luck for the next!

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

  8. My spouse and I stumbled over here by a different web address and thought I might
    as well check things out. I like what I see so now i’m
    following you. Look forward to finding out about your web page repeatedly.

    Take a look at my web page – travel coffee

  9. Today, I went to the beachfront with my kids. I found a sea shell and gave it to my
    4 year old daughter and said “You can hear the ocean if you put this to your ear.” She put the shell to her ear and screamed.
    There was a hermit crab inside and it pinched her ear. She never wants to go back!

    LoL I know this is completely off topic but I
    had to tell someone!

  10. Pretty great post. I just stumbled upon your weblog and wished to say that I’ve truly enjoyed browsing your weblog posts.
    After all I will be subscribing to your rss
    feed and I hope you write again soon!

  11. important review. Too visit the most famous site to
    get agen slot deposit pulsa. Amazing web page has received state originating from slot bets family in Dalam negeri.

    Now there are generally a great deal of attractive promos for those who join at
    this point.

  12. Quality articles is the important to be a focus for the viewers to visit the site, that’s what this web site is providing.

  13. Great beat ! I wish to apprentice while you amend your web site, how could i subscribe for a blog web site?
    The account aided me a acceptable deal. I had been a little bit acquainted of this
    your broadcast offered bright clear idea

  14. Heya this is kinda 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 skills so I wanted to get guidance from someone with experience.
    Any help would be enormously appreciated!

  15. It’s enormous that you are getting thoughts from this piece of
    writing as well as from our dialogue made at this time.

  16. Excellent site you have here.. It’s hard to find good quality writing like yours these
    days. I honestly appreciate individuals like you! Take care!!

Comments are closed.