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.

48,220 thoughts on “Contoh Soal Pemrograman – Pola Segitiga Siku-siku

  1. If some one desires expert view about blogging after that i propose him/her to
    go to see this weblog, Keep up the fastidious work.

  2. Excellent blog here! Also your website loads up fast!
    What host are you using? Can I get your affiliate link to your host?
    I wish my website loaded up as quickly as yours lol

  3. Right away I am going to do my breakfast, when having
    my breakfast coming over again to read more news.

  4. When some one searches for his vital thing, therefore he/she
    needs to be available that in detail, so that thing is maintained over here.

  5. I read this paragraph fully on the topic of the resemblance of hottest and preceding technologies, it’s remarkable article.

  6. Wow, amazing blog format! How lengthy have you been blogging for?
    you make running a blog glance easy. The overall look of
    your site is wonderful, let alone the content material!

  7. Does your site have a contact page? I’m having a tough time
    locating it but, I’d like to send you an email.
    I’ve got some suggestions for your blog you might be
    interested in hearing. Either way, great site and I look forward to seeing it improve over
    time.

  8. I do agree with all of the ideas you have offered for your post.
    They are very convincing and will definitely work.
    Nonetheless, the posts are too quick for newbies. Could you please prolong
    them a bit from subsequent time? Thank you for the
    post.

  9. Hi friends, how is everything, and what you would
    like to say regarding this piece of writing, in my view its in fact amazing in support of me.

  10. Hi, I do believe this is a great site. I stumbledupon it 😉
    I am going to return once again since i have saved as a favorite it.
    Money and freedom is the best way to change, may you be rich and continue to
    guide other people.

  11. Hi! I just wanted to ask if you ever have any problems with hackers?
    My last blog (wordpress) was hacked and I ended up losing a few months of hard work due to no back up.
    Do you have any solutions to prevent hackers?

  12. What’s up to all, for the reason that I am truly eager of
    reading this web site’s post to be updated regularly.
    It carries good stuff.

  13. Have you ever considered publishing an ebook or guest authoring on other websites?
    I have a blog based upon on the same topics you discuss and would love
    to have you share some stories/information. I know my visitors would appreciate your work.
    If you’re even remotely interested, feel free to send me an e-mail.

  14. Hello there! This is my first visit to your blog!
    We are a team of volunteers and starting a new initiative in a community in the same
    niche. Your blog provided us beneficial information to work on. You have done a extraordinary job!

  15. I enjoy what you guys tend to be up too. This sort of
    clever work and coverage! Keep up the terrific works guys I’ve incorporated you guys
    to blogroll.

  16. I really like what you guys are up too. This type of clever work and reporting!
    Keep up the terrific works guys I’ve incorporated you guys
    to my personal blogroll.

  17. Hey! Quick question that’s totally off topic.

    Do you know how to make your site mobile friendly?
    My site looks weird when viewing from my iphone.
    I’m trying to find a template or plugin that might be able to
    fix this problem. If you have any recommendations, please share.
    Thank you!

  18. Hi there, after reading this remarkable piece of writing i am
    as well glad to share my familiarity here with colleagues.

Comments are closed.