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 loved as much as you’ll receive carried out right here.
    The sketch is tasteful, your authored material stylish.

    nonetheless, you command get bought an impatience over that you wish
    be delivering the following. unwell unquestionably come
    further formerly again since exactly the same nearly a lot often inside case you shield this hike.

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

  3. excellent issues altogether, you simply received a logo new reader.
    What might you suggest in regards to your submit that you simply made
    a few days ago? Any certain?

  4. Heya! I’m at work surfing around your blog from
    my new apple iphone! Just wanted to say I love reading through
    your blog and look forward to all your posts!
    Carry on the outstanding work!

  5. Hi, There’s no doubt that your web site could possibly be having browser compatibility problems.
    When I take a look at your web site in Safari, it looks fine however when opening in IE,
    it has some overlapping issues. I merely wanted to provide you with a quick
    heads up! Besides that, excellent blog!

  6. Hello, I do think your blog may be having web browser compatibility problems.
    When I look at your blog in Safari, it looks fine but when opening in IE, it has some overlapping issues.
    I merely wanted to provide you with a quick heads up!
    Apart from that, fantastic site!

  7. 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?

  8. Hi just wanted to give you a quick heads up and let you
    know a few of the images aren’t loading correctly. I’m not sure why but I
    think its a linking issue. I’ve tried it in two different browsers and both
    show the same outcome.

  9. I know this web page provides quality dependent articles or reviews and extra information, is there any other web site
    which provides these data in quality?

  10. Aw, this was a very good post. Taking the time and actual effort
    to generate a good article… but what can I say… I
    put things off a whole lot and don’t manage to get anything done.

  11. each time i used to read smaller posts that as well
    clear their motive, and that is also happening with this article which I am reading now.

  12. Great blog here! Also your site loads up very fast!

    What host are you using? Can I get your affiliate link
    to your host? I wish my site loaded up as quickly as yours lol

  13. you are in point of fact a good webmaster. The site loading speed
    is incredible. It seems that you are doing any unique trick.

    Moreover, The contents are masterpiece. you’ve performed a great task on this subject!

  14. Hello! I just wanted to ask if you ever have any issues with hackers?
    My last blog (wordpress) was hacked and I ended up losing months of hard
    work due to no backup. Do you have any methods to prevent hackers?

  15. Hmm is anyone else experiencing problems with the images on this blog
    loading? I’m trying to find out if its a problem on my end
    or if it’s the blog. Any responses would be greatly appreciated.

  16. Way cool! Some very valid points! I appreciate you penning
    this post and also the rest of the site is extremely
    good.

  17. Wow! This blog looks exactly like my old one! It’s on a completely different topic but it has pretty much the same page layout and design. Great choice of
    colors!

  18. Hello there! I could have sworn I’ve been to this blog before but
    after browsing through a few of the articles I realized it’s new to me.
    Regardless, I’m definitely delighted I came across it and I’ll be bookmarking
    it and checking back regularly!

  19. My relatives all the time say that I am wasting my time here at net, however I know I am getting know-how all the
    time by reading such good articles.

Comments are closed.