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. Its like you read my mind! You seem 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 bit, but instead of that, this is wonderful
    blog. A great read. I will definitely be back.

  2. fantastic issues altogether, you simply gained a logo
    new reader. What might you recommend about your publish that you simply made some days
    ago? Any positive?

  3. Hi just wanted to give you a brief heads up and let you know a few of the pictures aren’t loading correctly.
    I’m not sure why but I think its a linking issue. I’ve tried it in two different browsers and both show
    the same outcome.

  4. Good day! 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
    success. If you know of any please share. Appreciate it!

  5. I like the helpful information you provide in your
    articles. I’ll bookmark your weblog and check again here regularly.
    I’m quite sure I will learn many new stuff right
    here! Good luck for the next!

  6. Good web site you’ve got here.. It’s hard to find excellent writing like yours nowadays.
    I seriously appreciate people like you! Take care!!

  7. Heya this is somewhat of off topic but I was wanting to know if blogs use WYSIWYG editors or if you have to
    manually code with HTML. I’m starting a blog soon but have
    no coding skills so I wanted to get advice from someone
    with experience. Any help would be enormously appreciated!

  8. Hello just wanted to give you a quick 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.

  9. I’ve been surfing on-line more than 3 hours these
    days, but I never found any attention-grabbing article like
    yours. It is lovely worth sufficient for me. In my view, if all webmasters
    and bloggers made excellent content as you did, the
    internet shall be much more useful than ever before.

  10. Hmm it appears like your site ate my first comment (it was super long)
    so I guess I’ll just sum it up what I had written and say, I’m thoroughly
    enjoying your blog. I too am an aspiring blog writer but I’m still new to
    everything. Do you have any tips and hints for novice blog writers?

    I’d certainly appreciate it.

  11. Aw, this was an extremely nice post. Finding the time and actual effort to make a top notch article… but
    what can I say… I put things off a lot and don’t seem to get anything done.

  12. This is the right site for anyone who wishes to find out about this topic.
    You realize a whole lot its almost hard to argue with you (not that I actually would want to…HaHa).
    You certainly put a fresh spin on a topic that has been discussed for ages.
    Wonderful stuff, just great!

  13. Everyone loves what you guys are usually up too.
    This type of clever work and reporting! Keep up the good works guys I’ve added you guys to blogroll.

  14. I have been surfing online more than 3 hours today, yet I never found any interesting article like yours.

    It is pretty worth enough for me. Personally, if all webmasters and bloggers made good content as you did, the web will be much more useful than ever before.

  15. Quality posts is the main to invite the visitors to pay a visit the web page, that’s
    what this site is providing.

  16. Hmm it appears like your site ate my first comment (it was extremely long) so I guess I’ll just
    sum it up what I had written and say, I’m thoroughly
    enjoying your blog. I as well am an aspiring blog blogger but I’m still new to everything.
    Do you have any helpful hints for beginner blog writers?
    I’d definitely appreciate it.

  17. I’m not sure why but this web site is loading very
    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.

  18. useful review. Likewise visit the very site to realize slot pulsa tanpa potongan. Typically the web page has received acknowledgement coming
    from video slot machine gaming associates in Negara sendiri.
    Presently there will be loads of appealing promos should you join recently.

  19. Right now it appears like Expression Engine is the best blogging
    platform available right now. (from what I’ve read)
    Is that what you’re using on your blog?

  20. exciting review. In the same manner visit my site to have slot deposit pulsa tanpa potongan. This great web page has
    received status together with slot online pulsa video games family in Dalam negeri.
    There are usually lots of interesting promos by simply chance anyone join currently.

  21. Fantastic beat ! I would like to apprentice at the same time as you amend your site,
    how can i subscribe for a weblog web site? The account aided me a acceptable deal.
    I had been a little bit familiar of this your broadcast provided shiny clear idea

  22. Hey! I just wanted to ask if you ever have any problems with hackers?
    My last blog (wordpress) was hacked and I ended up losing several weeks of hard work due to no back up.
    Do you have any methods to protect against hackers?

  23. Hello there! 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 success.
    If you know of any please share. Kudos!

Comments are closed.