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. What i don’t understood is if truth be told how you’re not actually a lot more smartly-favored
    than you may be now. You’re very intelligent. You recognize thus considerably with regards to this topic, made
    me for my part imagine it from numerous various angles.
    Its like women and men aren’t involved until it’s something
    to accomplish with Lady gaga! Your personal stuffs great.
    At all times maintain it up!

  2. I was curious if you ever considered changing the layout of your blog?
    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 1 or two
    pictures. Maybe you could space it out better?

  3. Hi just wanted to give you a brief 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 internet browsers and both show the
    same outcome.

  4. It’s going to be ending of mine day, however before finish I am reading this wonderful post to improve
    my know-how.

  5. you are actually a just right webmaster. The web site loading speed is
    amazing. It seems that you are doing any unique trick.
    Moreover, The contents are masterpiece. you’ve performed a fantastic
    job in this matter!

  6. Hey there just wanted to give you a quick heads up.

    The words in your article seem to be running off the screen in Opera.
    I’m not sure if this is a format issue or something to do with internet browser
    compatibility but I figured I’d post to let you know.

    The style and design look great though! Hope you get the problem fixed soon.
    Kudos

  7. Hi there it’s me, I am also visiting this web page on a
    regular basis, this site is actually fastidious and the viewers are actually sharing good thoughts.

  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
    responses? If so how do you prevent it, any plugin or anything
    you can recommend? I get so much lately it’s driving me mad
    so any assistance is very much appreciated.

  9. I’ve been surfing on-line more than 3 hours these days,
    yet I by no means found any attention-grabbing article like yours.
    It is lovely worth sufficient for me. Personally, if all web owners and bloggers made just right content as you probably did,
    the internet will probably be a lot more useful than ever
    before.

  10. I loved as much as you will receive carried out right here.
    The sketch is attractive, your authored material stylish.
    nonetheless, you command get bought an nervousness over
    that you wish be delivering the following. unwell unquestionably come more
    formerly again since exactly the same nearly a
    lot often inside case you shield this increase.

  11. I like the helpful info you provide in your articles.
    I’ll bookmark your blog and check again here frequently.
    I am quite certain I’ll learn many new stuff right here!
    Good luck for the next!

  12. I like what you guys tend to be up too. Such clever work and exposure!
    Keep up the great works guys I’ve incorporated you guys to
    my own blogroll.

  13. Hi! 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?

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

  15. beneficial review. In a similar manner visit my favorite site to
    understand game slot online. This amazing incredible web
    page has received across the world recognition via
    game slot online gambling establishment game enthusiasts in Negara sendiri.
    Right now there are actually loads of appealing promos if you ever join right now.

  16. You’ve made some decent points there. I looked on the net for more information about the
    issue and found most people will go along with your views on this web site.

Comments are closed.