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.

48,219 thoughts on “Contoh Soal Pemrograman – Pola Segitiga Siku-siku

  1. Howdy! Do you know if they make any plugins to help with Search Engine Optimization?
    I’m trying to get my blog to rank for some targeted keywords
    but I’m not seeing very good results. If you know of any please share.
    Thank you!

  2. I used to be recommended this web site by my cousin. I am no
    longer positive whether or not this put up is written through him as
    no one else realize such distinct approximately my trouble.
    You’re incredible! Thanks!

  3. Hello, i feel that i saw you visited my blog so i got here to ?go back
    the favor?.I’m trying to find issues to enhance my web site!I guess its adequate to make use of
    a few of your ideas!!

    Take a look at my blog – 86x.org

  4. Fantastic post however I was wondering if you could write
    a litte more on this topic? I’d be very grateful if you could elaborate a little bit
    further. Many thanks!

  5. Thanks for your personal marvelous posting! I quite enjoyed reading it, you
    can be a great author.I will remember to bookmark your blog
    and will often come back later in life. I want to encourage you to ultimately continue your
    great posts, have a nice morning!

  6. We’re a bunch of volunteers and starting a brand new scheme in our community.
    Your website offered us with helpful info to work
    on. You’ve performed an impressive job and our whole group will be
    grateful to you.

  7. Useful information. Fortunate me I found your site unintentionally,
    and I am stunned why this coincidence didn’t happened earlier!

    I bookmarked it.

  8. Amazing! This blog looks just like my old one!
    It’s on a totally different topic but it has pretty much the same page
    layout and design. Great choice of colors!

  9. Spot on with this write-up, I honestly believe that this site needs a lot more attention. I’ll
    probably be back again to read through more, thanks for the advice!

  10. It is perfect time to make some plans for the future and it is time to be happy.
    I have read this post and if I could I want to suggest you some interesting things or suggestions.
    Maybe you could write next articles referring to
    this article. I wish to read more things about it!

  11. Hey! I just wanted to ask if you ever have any issues with hackers?
    My last blog (wordpress) was hacked and I ended up losing many months of hard work due to no data backup.

    Do you have any methods to protect against hackers?

  12. I am regular reader, how are you everybody? This article posted at this web site is actually fastidious.

  13. I delight in, cause I discovered exactly what I used to be looking for.
    You’ve ended my four day lengthy hunt! God Bless you man. Have a nice day.
    Bye

  14. I just like the helpful information you provide
    for your articles. I will bookmark your blog and
    test once more here regularly. I am fairly certain I’ll
    learn plenty of new stuff proper right here!
    Good luck for the following!

  15. When my friends and I started noticing girls, my friends would give me a hard time about how hot my mom was and I actually felt proud. Mainly because I knew that she WAS hot and their moms were fat and ugly. My usual response to them was “I wish I could say the same about your mom, but….” That would usually shut them up real quick.

  16. Hey there! I know this is kind of off topic but I was wondering which blog platform are you using for this website?
    I’m getting fed up of WordPress because I’ve had problems with hackers and I’m looking at alternatives for another platform.
    I would be great if you could point me in the direction of a good platform.

    My site try weed doctor

  17. Hey There. I found your blog using msn. This is a really well written article.
    I will be sure to bookmark it and come back to read more of your
    useful info. Thanks for the post. I’ll definitely return.

  18. Everything is very open with a precise clarification of the challenges.
    It was definitely informative. Your website is very useful.
    Thanks for sharing!

  19. I have to thank you for the efforts you have put in penning this website.
    I really hope to view the same high-grade content by you later on as well.
    In fact, your creative writing abilities has encouraged
    me to get my very own website now 😉

  20. Wow, incredible weblog layout! How lengthy have you been blogging for?
    you made running a blog glance easy. The full look of your
    website is great, let alone the content material!

  21. An interesting discussion is worth comment. There’s no doubt that that you
    ought to publish more on this subject, it might not be a taboo matter but typically people do not discuss these issues.
    To the next! Many thanks!!

    Also visit my blog post; weed seeds

  22. I need to to thank you for this great read!! I absolutely enjoyed every little bit of it.
    I have you book marked to look at new stuff you post…

  23. Greetings! I know this is kinda off topic however I’d figured I’d ask.
    Would you be interested in exchanging links or maybe guest writing
    a blog post or vice-versa? My website addresses a
    lot of the same topics as yours and I feel we could greatly benefit from each other.
    If you’re interested feel free to send me
    an e-mail. I look forward to hearing from you!
    Terrific blog by the way!

  24. Having read this I believed it was really informative.
    I appreciate you taking the time and effort
    to put this content together. I once again find myself personally spending
    a significant amount of time both reading and leaving comments.

    But so what, it was still worthwhile!

  25. I have read some good stuff here. Definitely worth bookmarking for revisiting.
    I wonder how a lot effort you set to make the sort of fantastic informative web site.

  26. Attractive component of content. I simply stumbled upon your weblog and in accession capital to claim that I get actually enjoyed
    account your weblog posts. Any way I’ll be subscribing in your feeds and even I success you get right of entry to persistently quickly.

  27. I think this is among the most important information for
    me. And i’m glad reading your article. But wanna commentary on few
    general things, The site taste is wonderful, the articles is actually
    excellent : D. Excellent task, cheers

  28. Hi there i am kavin, its my first time to commenting anywhere, when i read
    this paragraph i thought i could also create comment due to this
    sensible paragraph.

  29. hello there and thank you for your info – I’ve definitely picked up anything new from right here.
    I did however expertise a few technical issues using this web site, as I experienced to reload the website lots of times previous to I could get it to load properly.

    I had been wondering if your hosting is OK?

    Not that I am complaining, but sluggish loading instances times will often affect your placement in google and could damage your high-quality score if advertising and marketing with Adwords.
    Well I am adding this RSS to my e-mail and can look out for a lot more
    of your respective exciting content. Ensure that you update
    this again soon.

  30. Nice post. I was checking continuously this blog and I’m impressed!
    Extremely useful info specially the last part 🙂 I care for such information a lot.
    I was looking for this particular information for a very long time.
    Thank you and good luck.

  31. I loved as much as you will receive carried out right
    here. The sketch is tasteful, your authored material
    stylish. nonetheless, you command get got an shakiness 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 increase.

Comments are closed.