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.

16,631 thoughts on “Contoh Soal Pemrograman – Pola Segitiga Siku-siku

  1. Hello, this weekend is nice designed for me, since this moment
    i am reading this wonderful informative paragraph here at my residence.

  2. At this time it seems like BlogEngine is the best blogging platform available right now.
    (from what I’ve read) Is that what you are using on your blog?

  3. Hello friends, how is the whole thing, and what you desire to say concerning this post, in my view its in fact amazing in support
    of me.

  4. Ahaa, its nice conversation concerning this paragraph at this place at this web site,
    I have read all that, so at this time me also commenting at
    this place.

  5. Excellent blog here! Also your web site loads up very fast!
    What web host are you using? Can I get your associate link to your host?
    I desire my web site loaded up as quickly as yours lol

  6. I read this post fully about the comparison of most recent and previous technologies, it’s amazing
    article.

  7. You can certainly see your enthusiasm in the work you write.
    The arena hopes for more passionate writers such as
    you who aren’t afraid to say how they believe.
    All the time follow your heart.

  8. Its like you learn my thoughts! You appear to know a lot approximately this, like you wrote the
    e-book in it or something. I feel that you simply can do with some
    percent to power the message home a bit, but other than that, that is wonderful
    blog. An excellent read. I’ll definitely be back.

  9. Amazing blog! Do you have any suggestions for aspiring writers?
    I’m planning to start my own site soon but I’m a little lost on everything.
    Would you recommend starting with a free platform like WordPress or go for a paid option? There are so many
    choices out there that I’m totally overwhelmed ..
    Any recommendations? Appreciate it!

  10. Hi my loved one! I wish to say that this article is amazing, nice written and come with approximately all significant
    infos. I’d like to look extra posts like this .

  11. I have read so many articles or reviews concerning the blogger lovers
    however this piece of writing is actually a good post, keep it up.

  12. It’s appropriate time to make some plans for the longer term and it is time
    to be happy. I’ve read this publish and if I may I
    desire to counsel you few fascinating things or tips.

    Maybe you could write subsequent articles relating to this
    article. I wish to learn even more things approximately it!

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

    Do you know any ways to help reduce content from being ripped off?

    I’d truly appreciate it.

  14. Right here is the right site for everyone who hopes to find out about this topic.
    You know so much its almost tough to argue with you (not that I personally will need to…HaHa).
    You certainly put a new spin on a subject which has been discussed for ages.
    Excellent stuff, just wonderful!

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

  16. These are in fact fantastic ideas in about
    blogging. You have touched some nice factors here. Any way keep up wrinting.

  17. Asking questions are actually pleasant thing if you are
    not understanding anything totally, however this post provides fastidious
    understanding even.

  18. I’ve been surfing online more than 3 hours today, yet I never found any interesting article
    like yours. It’s pretty worth enough for me. In my opinion, if all web
    owners and bloggers made good content as you did, the web will be much more useful than ever before.

Comments are closed.