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.

16,631 thoughts on “Contoh Soal Pemrograman – Pola Segitiga Siku-siku

  1. Hello! I’ve been following your site for a while now and finally got the courage to go ahead and
    give you a shout out from Atascocita Tx! Just wanted to tell you keep up the
    great job!

  2. What i don’t realize is if truth be told how you’re not actually a lot more neatly-liked than you may be now.

    You’re very intelligent. You already know therefore
    considerably in terms of this topic, produced me in my view believe it from numerous numerous
    angles. Its like men and women are not fascinated
    unless it is something to accomplish with Woman gaga!
    Your own stuffs excellent. All the time handle it up!

  3. Great blog here! Also your site loads up fast!
    What web host are you using? Can I get your affiliate link
    to your host? I wish my web site loaded up as fast as yours lol

  4. Hi there! I could have sworn I’ve visited this web site before but after going through a
    few of the posts I realized it’s new to me. Anyways,
    I’m definitely pleased I discovered it and I’ll be bookmarking
    it and checking back frequently!

  5. Hey there! Do you know if they make any plugins to protect against hackers?
    I’m kinda paranoid about losing everything I’ve worked hard on. Any tips?

  6. I don’t even know how I ended up here, but I thought this post was good.
    I do not know who you are but definitely you are going to a famous
    blogger if you are not already 😉 Cheers!

  7. I was wondering if you ever considered changing the page 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 one or two images.

    Maybe you could space it out better?

  8. It is not my first time to pay a visit this web page, i am browsing this web page
    dailly and obtain pleasant information from here daily.

  9. I’m not sure exactly why but this site is
    loading very slow for me. Is anyone else having this problem or is it a issue on my end?
    I’ll check back later and see if the problem still exists.

  10. whoah this blog is excellent i love reading your posts. Stay up the good work!
    You know, many individuals are searching around for this info,
    you could aid them greatly.

  11. Hi there! Do you use Twitter? I’d like to follow you
    if that would be okay. I’m undoubtedly enjoying your blog and
    look forward to new updates.

  12. Its like you read my mind! You appear to know a lot about this, like you wrote the book in it or
    something. I think that you can do with some pics to drive the message home a little bit, but instead
    of that, this is fantastic blog. An excellent read. I’ll certainly be back.

  13. Hey there just wanted to give you a brief heads up and let you know a few of the
    pictures aren’t loading properly. 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.

  14. I don’t know if it’s just me or if perhaps everyone else experiencing problems with
    your blog. It appears as if some of the written text in your posts
    are running off the screen. Can someone else please
    comment and let me know if this is happening to them too?
    This might be a issue with my internet browser because I’ve
    had this happen previously. Kudos

  15. Currently it appears like Drupal is the preferred blogging platform available
    right now. (from what I’ve read) Is that what you are using
    on your blog?

  16. An intriguing discussion is worth comment. I do believe that
    you need to write more on this subject matter, it might not
    be a taboo subject but typically folks don’t talk about
    such topics. To the next! Best wishes!!

  17. Hi, its nice paragraph on the topic of media print, we all know media is a impressive source of information.

Comments are closed.