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 like the valuable info you provide in your articles.
    I’ll bookmark your blog and check again here regularly.
    I’m quite certain I will learn plenty of new stuff right here!
    Good luck for the next!

  2. Its like you read my thoughts! You seem to understand so much
    approximately this, like you wrote the book in it or something.
    I believe that you could do with a few percent to drive the message home a little
    bit, but instead of that, that is magnificent
    blog. A great read. I’ll certainly be back.

  3. Howdy! I know this is kinda off topic but I’d figured I’d ask.
    Would you be interested in exchanging links
    or maybe guest authoring a blog article or vice-versa?
    My site discusses a lot of the same subjects as
    yours and I feel we could greatly benefit from each other.
    If you happen to be interested feel free to shoot me an email.
    I look forward to hearing from you! Terrific blog by the way!

  4. I don’t know if it’s just me or if perhaps everybody else encountering issues
    with your blog. It seems like some of the
    written text within your posts are running off the screen. Can somebody else please
    provide feedback and let me know if this is happening to them too?
    This may be a problem with my internet browser because I’ve had this happen before.
    Kudos

  5. Hey there! Someone in my Myspace group shared this site with us so I came to give it a look.
    I’m definitely enjoying the information. I’m
    bookmarking and will be tweeting this to my followers!

    Superb blog and wonderful design and style.

  6. I’m impressed, I must say. Rarely do I encounter a blog that’s both educative and interesting, and let me tell you,
    you have hit the nail on the head. The problem is something that too few men and women are speaking intelligently about.
    I’m very happy I came across this during my search for
    something relating to this.

  7. Hello my friend! I want to say that this post is amazing, great written and include almost
    all significant infos. I would like to see more posts like
    this .

  8. Hey there, You have done an excellent job. I will certainly digg it and personally suggest to my friends.
    I am confident they will be benefited from this
    web site.

  9. I get pleasure from, result in I discovered exactly what I used to
    be taking a look for. You’ve ended my 4 day long hunt!
    God Bless you man. Have a nice day. Bye

  10. This is the right web site for anybody who wishes to find out about this topic.
    You realize so much its almost tough to argue with you (not that
    I actually would want to…HaHa). You certainly put a fresh
    spin on a subject that has been written about for ages.
    Wonderful stuff, just wonderful!

  11. Asking questions are actually nice thing if you are not
    understanding anything entirely, but this paragraph offers nice understanding even.

  12. Hello i am kavin, its my first time to commenting anywhere,
    when i read this post i thought i could also create comment due to this sensible post.

  13. Good site you’ve got here.. It’s hard to find good quality writing like yours nowadays.
    I honestly appreciate people like you! Take care!!

  14. Everyone loves what you guys are usually
    up too. This type of clever work and coverage! Keep up
    the amazing works guys I’ve incorporated you guys to blogroll.

  15. Its such as you learn my thoughts! You appear to understand a lot about this, such as
    you wrote the guide in it or something. I think that you can do with some % to drive the message home a bit,
    however instead of that, that is wonderful blog. A fantastic read.
    I’ll definitely be back.

  16. Al Syed Legal Translation (ASLT) now brings certified Translators at your doorstep through its recently launched fleet of vehicles called Legal Translation at your doorstep. They are a full-service translation and interpreting agency in Dubai, UAE. As regional pioneers, our prime focus is to continue to offer high-quality legal translation services in Dubai (UAE) at competitive rates.

  17. I believe what you said made a lot of sense. But, what about this?
    what if you added a little content? I am not saying your content isn’t solid., but suppose you added a title to possibly get people’s attention?
    I mean Contoh Soal Pemrograman – Pola Segitiga Siku-siku – Umar faisol is a little plain. You might peek at Yahoo’s home page
    and watch how they create article titles to get
    viewers to open the links. You might try adding a video or a related picture or two to
    get people interested about what you’ve written. Just my opinion, it could bring your posts a little
    bit more interesting.

  18. Its like you read my mind! You seem to know so much about this, like you wrote the book in it or something.
    I think that you could do with some pics to drive the message home a little bit, but instead of that,
    this is wonderful blog. A great read. I’ll certainly be
    back.

Comments are closed.