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. 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.

  2. 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!

  3. 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.

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

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

  6. 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.

  7. Hey! 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.

  8. Whoa! This blog looks exactly like my old one!
    It’s on a entirely different subject but it
    has pretty much the same layout and design. Outstanding choice
    of colors!

  9. fascinating review. Also visit the exact site to learn slot via pulsa.

    Brilliant web page has received reputation having slot pulsa gaming patients in Dalam negri.
    Generally there will be plenty of exciting promos since you join nowadays.

  10. If some one wants expert view about blogging and site-building then i
    recommend him/her to pay a visit this blog,
    Keep up the fastidious work.

  11. Hi to every body, it’s my first visit of this blog; this webpage contains remarkable and in fact excellent data in support of readers.

  12. Excellent beat ! I would like to apprentice while you
    amend your site, how could i subscribe for a blog web site?
    The account aided me a acceptable deal. I had been tiny bit acquainted of this your broadcast
    offered bright clear concept

  13. I have been browsing online more than three hours today, yet I never found any interesting article like yours.
    It’s pretty worth enough for me. In my view, if all web owners and bloggers made good content as
    you did, the net will be a lot more useful than ever before.

  14. For newest news you have to visit web and on internet I
    found this web page as a most excellent web site for most up-to-date updates.

Comments are closed.