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. Wonderful article! That is the kind of information that should be shared across the
    internet. Shame on the search engines for not positioning
    this submit upper! Come on over and visit my website . Thank you =)

  2. you are truly a just right webmaster. The website loading
    pace is amazing. It sort of feels that you’re doing any distinctive
    trick. Furthermore, The contents are masterpiece. you have done
    a great activity on this subject!

  3. I think the admin of this site is really working hard in support of his site, since here every stuff is quality based stuff.

  4. These are actually wonderful ideas in about blogging. You
    have touched some pleasant points here. Any way keep up wrinting.

  5. Hi, i think that i saw you visited my weblog thus i came to “return the favor”.I
    am attempting to find things to improve my website!I suppose its ok to use a few of your ideas!!

  6. I just could not leave your web site before suggesting that
    I extremely loved the standard info an individual provide on your guests?
    Is going to be back regularly to inspect new posts

  7. It’s really a nice and helpful piece of information.
    I am glad that you just shared this helpful information with us.
    Please keep us up to date like this. Thank you for sharing.

  8. It’s the best time to make some plans for the future
    and it is time to be happy. I have read this
    post and if I could I want to suggest you some interesting things or advice.
    Perhaps you can write next articles referring to this article.
    I desire to read even more things about it!

  9. Hello! Do you know if they make any plugins to help with SEO?
    I’m trying to get my blog to rank for some targeted keywords
    but I’m not seeing very good success. If you know of
    any please share. Kudos!

  10. Tremendous things here. I’m very glad to peer your post.
    Thanks so much and I am having a look ahead to contact you.

    Will you kindly drop me a mail?

Comments are closed.