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. Greetings from California! I’m bored to death
    at work so I decided to check out your site on my iphone during
    lunch break. I love the knowledge you present
    here and can’t wait to take a look when I get home.
    I’m amazed at how fast your blog loaded on my phone
    .. I’m not even using WIFI, just 3G .. Anyhow, good blog!

  2. I believe everything published was very logical.
    But, what about this? what if you were to create a killer title?

    I am not saying your information is not solid., however what if
    you added a post title to maybe grab people’s attention?
    I mean Contoh Soal Pemrograman – Pola Segitiga
    Siku-siku – Umar faisol is kinda vanilla. You ought
    to glance at Yahoo’s home page and note how they create
    article headlines to get people to open the links. You might
    add a video or a related picture or two to get people interested about what you’ve written. In my opinion, it could make your posts a
    little bit more interesting.

  3. Do you mind if I quote a couple of your articles as long as I provide credit and sources back
    to your site? My blog is in the very same area of interest as yours and
    my users would certainly benefit from a lot of the information you present
    here. Please let me know if this alright with you. Appreciate it!

  4. Do you mind if I quote a few of your posts as long as I provide credit and sources back to your weblog?

    My blog site is in the exact same niche as yours and my visitors
    would definitely benefit from some of the information you provide here.
    Please let me know if this okay with you. Regards!

  5. With havin so much content do you ever run into any issues of plagorism or copyright violation? My site has a lot of unique content I’ve either written myself or outsourced but it
    appears a lot of it is popping it up all over the internet without my authorization. Do you
    know any methods to help stop content from being stolen? I’d certainly appreciate it.

  6. useful review. Also visit often the site to experience agen slot deposit pulsa.

    The following web site has received popularity from game slot betting persons in Dalam negri.
    Presently there will be many stunning promos if
    you ever join right now.

  7. Hi, I do believe this is an excellent site. I stumbledupon it ;
    ) I may revisit once again since i have book-marked it. Money and freedom
    is the best way to change, may you be rich
    and continue to help others.

  8. Right here is the right blog for anyone who wants to find
    out about this topic. You know 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 subject which has
    been written about for years. Great stuff, just great!

  9. 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 a few pics to drive the message home a bit, but instead of that, this is great blog.
    A fantastic read. I’ll certainly be back.

    Feel free to surf to my site :: tanpa potongan

  10. What’s Going down i am new to this, I stumbled upon this I have found It absolutely useful
    and it has helped me out loads. I’m hoping to give a contribution & aid other customers like its
    helped me. Great job.

  11. I got this site from my pal who informed me about this web site and at the moment this time I am browsing this site
    and reading very informative content here.

  12. Its like you learn my mind! You appear to know a lot approximately this, such as you wrote the ebook in it or something.
    I feel that you could do with a few % to force the message home a bit, but other than that, that is fantastic blog.
    A great read. I will definitely be back.

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

  14. Good way of telling, and nice piece of writing to obtain information concerning
    my presentation subject, which i am going to present in academy.

  15. Hi there, i read your blog occasionally and i own a similar one and i
    was just wondering if you get a lot of spam feedback? If so how
    do you prevent it, any plugin or anything you can recommend?
    I get so much lately it’s driving me crazy so any assistance is very much appreciated.

  16. magnificent issues altogether, you just received a new reader.
    What could you recommend in regards to your publish that you simply made some days ago?
    Any certain?

  17. Terrific post however , I was wondering if you could write a litte more
    on this topic? I’d be very grateful if you could elaborate a little
    bit further. Bless you!

  18. The other day, while I was at work, my cousin stole my iphone and tested to see if
    it can survive a 25 foot drop, just so she can be a youtube sensation. My iPad
    is now broken and she has 83 views. I know this is entirely off topic but I had to share it with someone!

  19. I have been surfing on-line greater than three hours lately, but I by no means
    discovered any attention-grabbing article like yours.

    It is pretty worth enough for me. Personally, if all site owners and
    bloggers made just right content as you probably did, the internet will likely be a lot more helpful
    than ever before.

Comments are closed.