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. Having read this I believed it was really enlightening.
    I appreciate you spending some time and effort to put this
    short article together. I once again find myself personally spending a lot of time both reading and posting comments.
    But so what, it was still worth it!

  2. Howdy! This post couldn’t be written any better!
    Looking through this post reminds me of my previous roommate!

    He always kept preaching about this. I will send
    this post to him. Pretty sure he will have a good read. Thanks for sharing!

  3. I every time spent my half an hour to read this webpage’s content every day along with a mug of coffee.

  4. I’m not sure why but this site is loading
    incredibly slow for me. Is anyone else having this problem or is it a problem on my end?

    I’ll check back later and see if the problem still exists.

  5. Superb blog you have here but I was curious about if you knew of any user discussion forums that
    cover the same topics talked about in this article?
    I’d really love to be a part of group where I can get responses from other knowledgeable individuals that share the same interest.
    If you have any recommendations, please let me know.

    Bless you!

  6. Hi there, I found your site by way of Google while searching for a comparable topic, your web site got here up,
    it looks great. I’ve bookmarked it in my google bookmarks.

    Hi there, simply become aware of your blog via Google, and found that it’s really informative.
    I am going to be careful for brussels. I’ll be grateful when you continue
    this in future. Numerous people will probably be benefited out of your writing.
    Cheers!

  7. I was suggested this web site by my cousin. I am not sure whether this post
    is written by him as nobody else know such detailed about my problem.
    You’re amazing! Thanks!

  8. Unquestionably imagine that that you said. Your favourite justification appeared to be on the web the simplest
    factor to take into accout of. I say to you, I definitely get irked even as folks think about worries that they just don’t know about.
    You managed to hit the nail upon the highest
    and also outlined out the entire thing with no need side-effects
    , other people could take a signal. Will likely be again to get more.
    Thanks

  9. Asking questions are really pleasant thing if you are not understanding
    something entirely, however this piece of writing provides good
    understanding yet.

  10. I am not certain the place you’re getting your info, but good topic.
    I must spend some time learning much more
    or figuring out more. Thank you for excellent info I used
    to be on the lookout for this info for my mission.

  11. You really make it seem so easy together with your presentation however I find this topic to be really something which I feel I might
    by no means understand. It kind of feels too complicated and
    very broad for me. I am taking a look ahead to your next post, I will try to get the grasp of it!

  12. Hello there, just became aware of your blog through Google, and found that it is truly informative.

    I’m going to watch out for brussels. I’ll be grateful if you continue this
    in future. A lot of people will be benefited from your
    writing. Cheers!

  13. obviously like your web site but you have to test the
    spelling on quite a few of your posts. A number of them are rife with spelling problems and I find
    it very troublesome to inform the reality nevertheless I will certainly come back again.

  14. Hello, I desire to subscribe for this webpage to get most up-to-date updates, therefore where can i do it please help.

  15. Thanks a lot for sharing this with all of us you really realize what you’re talking approximately!
    Bookmarked. Please additionally talk over with my web site
    =). We will have a hyperlink trade agreement between us

Comments are closed.