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. obviously like your web-site but you have to take a look at the spelling on several
    of your posts. A number of them are rife with spelling problems and I in finding it very troublesome
    to inform the truth however I will definitely come again again.

  2. Hi are using WordPress for your site platform? I’m new to the blog world
    but I’m trying to get started and create my own. Do you require any html coding
    expertise to make your own blog? Any help would be greatly appreciated!

  3. you’re actually a good webmaster. The web site loading pace is amazing.
    It kind of feels that you are doing any distinctive trick.

    Furthermore, The contents are masterwork. you’ve performed a fantastic job on this matter!

  4. Hey there would you mind letting me know which web host you’re working with?
    I’ve loaded your blog in 3 completely different internet browsers and I must say this blog loads a lot faster
    then most. Can you recommend a good web hosting provider
    at a fair price? Cheers, I appreciate it!

  5. great issues altogether, you just won a new reader.

    What would you suggest about your publish that you made some days
    in the past? Any positive?

  6. Having read this I believed it was rather enlightening.

    I appreciate you spending some time and effort to put this information together.
    I once again find myself personally spending a significant amount of time both reading and leaving
    comments. But so what, it was still worth it!

  7. Write more, thats all I have to say. Literally, it seems as
    though you relied on the video to make your
    point. You obviously know what youre talking about, why throw away your intelligence on just posting videos
    to your site when you could be giving us something enlightening to read?

  8. I’ve been exploring for a bit for any high quality articles or weblog posts in this sort of house .
    Exploring in Yahoo I finally stumbled upon this web site.
    Reading this information So i am satisfied to convey that I
    have an incredibly excellent uncanny feeling I came upon just what I needed.

    I such a lot without a doubt will make certain to do not put
    out of your mind this site and give it a look regularly.

  9. Howdy! This is kind of off topic but I need some
    guidance from an established blog. Is it very difficult to set up your own blog?
    I’m not very techincal but I can figure things out pretty quick.
    I’m thinking about setting up my own but I’m not sure where to start.

    Do you have any ideas or suggestions? Appreciate it

  10. Hello there! I simply want to offer you a huge thumbs up for your excellent info you have got right
    here on this post. I’ll be returning to your site
    for more soon.

  11. Hi there, for all time i used to check web site posts here in the early hours in the break of day, as i love to find out more and more.

  12. I have read some just right stuff here. Certainly price bookmarking for revisiting.
    I surprise how a lot effort you put to create this type
    of great informative web site.

  13. I just like the valuable information you provide on your articles.
    I will bookmark your weblog and check once more here regularly.
    I’m somewhat sure I’ll learn many new stuff right right here!
    Best of luck for the next!

  14. Have you ever considered about adding a little bit more than just your articles?

    I mean, what you say is important and everything.
    Nevertheless imagine if you added some great photos or videos to
    give your posts more, “pop”! Your content is excellent but with
    images and clips, this blog could certainly be one of the greatest in its field.
    Terrific blog!

  15. With havin so much content do you ever run into any issues of plagorism or copyright infringement?
    My blog has a lot of exclusive content I’ve either written myself or
    outsourced but it looks like a lot of it is popping it up all over the web without my agreement.

    Do you know any methods to help protect against content from being
    ripped off? I’d definitely appreciate it.

  16. of course like your web-site but you need to check the
    spelling on quite a few of your posts. A number of them are rife
    with spelling problems and I in finding it very troublesome to inform the truth however I’ll surely come again again.

  17. I read this piece of writing completely on the topic of the comparison of latest and
    earlier technologies, it’s amazing article.

  18. I’m not sure why but this web site is loading incredibly slow for me.

    Is anyone else having this issue or is it a problem on my end?
    I’ll check back later and see if the problem still exists.

  19. Heya are using WordPress for your site platform? I’m new to
    the blog world but I’m trying to get started and create my own. Do you require any html
    coding expertise to make your own blog? Any help would be greatly appreciated!

  20. I’m extremely impressed along with your writing abilities as
    smartly as with the structure for your blog. Is that this a
    paid theme or did you modify it yourself? Anyway keep up
    the excellent high quality writing, it’s uncommon to peer a
    great blog like this one nowadays..

Comments are closed.