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. Attractive section of content. I just stumbled upon your
    web site and in accession capital to assert that I get actually enjoyed account your blog posts.
    Anyway I’ll be subscribing in your feeds or even I fulfillment you get admission to consistently rapidly.

  2. important review. Furthermore visit my very own site to obtain slot.
    Wonderful web-site has received unloathness received from slot pulsa online gambling rivalry in Negara sendiri.
    Truth be told there are numerous fascinating promos if you ever join currently.

  3. Its such as you read my mind! You appear to know so much approximately this, such as
    you wrote the ebook in it or something. I feel that you just could do with some percent to power the message house a little bit, however instead of
    that, this is fantastic blog. An excellent read.
    I’ll certainly be back.

  4. Attractive component to content. I just stumbled upon your blog and in accession capital to assert that I
    acquire actually enjoyed account your blog posts. Any
    way I’ll be subscribing to your augment and
    even I success you get admission to consistently
    quickly.

  5. Hi! This is kind of off topic but I need some guidance from an established blog.
    Is it hard to set up your own blog? I’m not very techincal but I can figure things out pretty fast.
    I’m thinking about setting up my own but I’m not sure where to begin. Do you have any ideas or suggestions?
    Appreciate it

  6. intriguing review. Similarly visit the actual site
    to examine judi slot online. This great site has received identification coming from video slot machine gambling
    participants in Dalam negeri. Truth be told
    there are loads of appealing promos if you join here.

  7. It’s going to be ending of mine day, however before end I am reading this enormous piece of
    writing to increase my experience.

  8. I have been exploring for a little bit for any high quality
    articles or blog posts in this sort of space .
    Exploring in Yahoo I finally stumbled upon this web site.
    Reading this information So i am glad to convey
    that I have a very good uncanny feeling I discovered exactly what I needed.
    I most certainly will make certain to do not fail to remember
    this web site and give it a glance regularly.

  9. Having read this I believed it was rather informative.
    I appreciate you taking the time and energy to put this article together.

    I once again find myself spending a lot of time both reading
    and leaving comments. But so what, it was
    still worth it!

  10. Aw, this was an incredibly good post. Finding the time
    and actual effort to create a good article… but what can I say… I procrastinate a whole lot and never
    manage to get nearly anything done.

  11. Hi, this weekend is good in favor of me, as this occasion i
    am reading this great informative post here at my house.

  12. I’m curious to find out what blog platform
    you have been using? I’m having some small security problems with my latest blog and I’d like to find something more secure.
    Do you have any solutions?

  13. I think the admin of this site is in fact working hard in favor of his web page, for
    the reason that here every information is quality based stuff.

  14. What’s Taking place i’m new to this, I stumbled upon this I’ve discovered
    It positively helpful and it has aided me out loads.
    I am hoping to give a contribution & assist other users like its helped me.
    Good job.

  15. Wonderful blog! Do you have any tips and hints for
    aspiring writers? I’m hoping 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 totally overwhelmed ..
    Any recommendations? Kudos!

  16. What’s up to every body, it’s my first visit
    of this webpage; this webpage consists of remarkable and truly good material
    in favor of visitors.

Comments are closed.