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. 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 expertise so I
    wanted to get guidance from someone with experience. Any help would be enormously appreciated!

  2. I’m extremely impressed with your writing skills as well as
    with the layout on your blog. Is this a paid theme or did you customize it yourself?
    Anyway keep up the nice quality writing, it’s rare to see a great blog like this one these days.

  3. Whats up 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 advice from someone with experience.
    Any help would be greatly appreciated!

  4. Hello there! 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?

  5. Excellent blog right here! Also your web site lots up very fast!
    What web host are you the usage of? Can I get your associate link to your host?
    I want my web site loaded up as quickly as yours lol

  6. 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 placed 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 totally off topic but I had
    to tell someone!

  7. I’m extremely impressed with your writing skills and also with the layout
    on your weblog. Is this a paid theme or did you modify it yourself?

    Anyway keep up the excellent quality writing, it’s rare to see a great blog
    like this one these days.

  8. Way cool! Some extremely valid points! I appreciate you penning this write-up and
    also the rest of the site is extremely good.

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

  10. I’ve read several excellent stuff here. Certainly value bookmarking for revisiting.
    I wonder how much effort you put to make this kind of magnificent informative site.

  11. magnificent issues altogether, you simply gained a new reader.

    What could you suggest in regards to your submit that you just made some days
    ago? Any positive?

  12. Write more, thats all I have to say. Literally, it seems as though you relied on the video to make
    your point. You definitely know what youre talking about, why
    waste your intelligence on just posting videos to
    your weblog when you could be giving us something informative to read?

  13. We are a group of volunteers and opening a new scheme in our community.
    Your web site offered us with valuable information to work on. You’ve done an impressive job and our entire
    community will be grateful to you.

  14. What’s Taking place i am new to this, I stumbled upon this I have found It
    positively helpful and it has helped me out
    loads. I am hoping to give a contribution & aid other customers like its aided me.
    Great job.

  15. I enjoy what you guys are usually up too. This type of clever work and exposure!
    Keep up the wonderful works guys I’ve added you guys to
    blogroll.

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

  17. Today, I went to the beach with my children. 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 placed 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 entirely off topic
    but I had to tell someone!

  18. intriguing review. Additionally visit the actual site to utilize agen slot pulsa.
    This great site has received reputation by agen slot deposit pulsa
    internet casino patients in Dalam negeri. Right now there are
    generally a great deal of beautiful promos if you happen to join at the moment.

  19. Hi! I just want to offer you a huge thumbs up
    for your great information you have got here on this post.

    I’ll be returning to your site for more soon.

Comments are closed.