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

  2. Wonderful goods from you, man. I have take into accout your stuff previous to and you’re
    just extremely great. I actually like what you’ve received right
    here, certainly like what you are stating and the way in which wherein you are saying it.
    You are making it enjoyable and you continue to care for to stay
    it wise. I can’t wait to read far more from
    you. That is actually a great site.

  3. I don’t know whether it’s just me or if perhaps
    everybody else experiencing issues with your blog. It appears as though some of the text
    on your content are running off the screen. Can someone else please comment and let me know
    if this is happening to them as well? This may be a issue with my web browser because I’ve
    had this happen before. Cheers

  4. Wow, incredible weblog layout! How lengthy have you been running a blog
    for? you made running a blog glance easy. The overall
    look of your web site is great, as neatly as the
    content material!

  5. Hi! I could have sworn I’ve been to this site before but after reading through some of
    the post I realized it’s new to me. Nonetheless, I’m definitely
    glad I found it and I’ll be bookmarking and
    checking back frequently!

  6. I like the helpful info you provide to your articles.

    I will bookmark your blog and take a look at again right here frequently.
    I am moderately certain I will learn plenty of new stuff right here!
    Good luck for the following!

  7. Pretty section of content. I just stumbled upon your site and in accession capital to assert that I get actually enjoyed account your blog posts.
    Any way I’ll be subscribing to your feeds and even I achievement you access
    consistently quickly.

  8. Hello, i read your blog occasionally and i own a similar one and i was just wondering if you
    get a lot of spam comments? If so how do you prevent
    it, any plugin or anything you can suggest? I get so much lately it’s driving me mad
    so any assistance is very much appreciated.

  9. I appreciate, cause I found exactly what I used to be taking a look for.
    You have ended my four day lengthy hunt! God Bless you man. Have a nice
    day. Bye

  10. What’s Going down i’m new to this, I stumbled upon this I have discovered It positively
    useful and it has helped me out loads. I hope
    to contribute & help different users like its aided me.
    Great job.

  11. We’re a group of volunteers and opening a new scheme in our community.
    Your site offered us with valuable info
    to work on. You’ve done an impressive job and our whole community will be grateful to you.

  12. Heya i’m for the first time here. I found this board and I in finding It truly useful & it helped me out a lot.

    I’m hoping to give one thing again and help others like you aided me.

  13. Hi would you mind letting me know which hosting company you’re
    using? I’ve loaded your blog in 3 different browsers and I must say this blog loads a lot
    faster then most. Can you suggest a good web hosting provider at a honest price?
    Cheers, I appreciate it!

  14. useful review. Additionally visit most of the
    site to understand slot deposit pulsa tanpa potongan. These kinds of pages has
    received endorsement with slot deposit pulsa tanpa
    potongan betting competitors in Dalam negri. There tend to be a lot of fascinating promos if you ever join right now.

  15. I’m impressed, I must say. Seldom do I come across a blog that’s both
    educative and engaging, and let me tell you, you’ve
    hit the nail on the head. The issue is something that too few folks are speaking intelligently about.
    I’m very happy that I came across this in my search for
    something relating to this.

  16. I have read so many content concerning the blogger lovers however this post is in fact a pleasant piece of writing, keep it up.

  17. It’s a pity you don’t have a donate button! I’d certainly donate to this fantastic blog!

    I suppose for now i’ll settle for book-marking and adding your RSS feed to my
    Google account. I look forward to new updates and will
    share this blog with my Facebook group. Chat soon!

  18. 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 web site.
    Studying this information So i am glad to express that I have an incredibly good uncanny feeling I found
    out just what I needed. I such a lot surely will make sure to do not
    omit this web site and give it a glance on a continuing basis.

Comments are closed.