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. Hey! This is my first visit to your blog! We are a group of volunteers and starting a
    new initiative in a community in the same niche.
    Your blog provided us useful information to work on. You
    have done a marvellous job!

  2. Good day! I could have sworn I’ve visited this blog before but after going through many of the posts I realized it’s new to me.
    Regardless, I’m certainly delighted I discovered it and I’ll be book-marking it
    and checking back regularly!

  3. I’m curious to find out what blog system you are using?

    I’m having some minor security issues with my latest site and I’d like to find something more secure.
    Do you have any suggestions?

  4. Attractive section of content. I just stumbled upon your blog and in accession capital to
    assert that I acquire actually enjoyed account your blog posts.
    Anyway I’ll be subscribing to your feeds and even I achievement you access
    consistently rapidly.

  5. Have you ever thought about including a little bit more than just
    your articles? I mean, what you say is valuable and everything.

    However just imagine if you added some great photos or videos to give
    your posts more, “pop”! Your content is excellent but
    with images and video clips, this blog could certainly
    be one of the greatest in its niche. Terrific blog!

  6. you are in reality a excellent webmaster. The site loading velocity is amazing.
    It sort of feels that you’re doing any unique trick.

    Furthermore, The contents are masterwork. you’ve performed a magnificent job on this topic!

  7. Your style is so unique in comparison to other folks I have read stuff from.
    I appreciate you for posting when you’ve got the opportunity, Guess I’ll just bookmark this page.

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

  9. Currently it appears like BlogEngine is the preferred blogging platform out there right now.
    (from what I’ve read) Is that what you’re using on your blog?

  10. It’s perfect time to make a few plans for the
    long run and it is time to be happy. I’ve read this put up and if I could I wish to counsel you some interesting things or suggestions.
    Maybe you can write subsequent articles relating to this article.
    I wish to read even more issues approximately
    it!

  11. Somebody necessarily lend a hand to make seriously posts I’d state.
    This is the first time I frequented your web page and thus
    far? I amazed with the research you made to make this actual submit extraordinary.
    Wonderful process!

  12. It’s appropriate time to make some plans for the longer term and it’s time to be happy.
    I’ve learn this put up and if I may I desire to recommend you some fascinating issues
    or suggestions. Perhaps you can write subsequent articles regarding this article.
    I wish to read even more issues about it!

  13. Hi, i think that i saw you visited my site
    thus i came to “return the favor”.I am trying to find things to enhance my web site!I
    suppose its ok to use some of your ideas!!

  14. You can definitely see your enthusiasm in the work you write.
    The arena hopes for even more passionate writers such as you
    who are not afraid to say how they believe.
    At all times follow your heart.

  15. I’m impressed, I have to admit. Rarely do I encounter a
    blog that’s both equally educative and amusing, and without a doubt, you have hit the nail on the head.

    The issue is an issue that too few folks are speaking intelligently about.

    Now i’m very happy that I stumbled across this in my search for something concerning
    this.

  16. I do not even know the way I ended up right here, but I thought this submit used
    to be great. I do not understand who you’re however certainly you’re going
    to a well-known blogger should you are not already.
    Cheers!

  17. Hey there! 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 data backup.
    Do you have any solutions to stop hackers?

  18. Howdy, i read your blog from time to time and i own a similar one and i was just wondering if you get a lot of spam comments?

    If so how do you prevent it, any plugin or anything
    you can suggest? I get so much lately it’s driving me insane so
    any assistance is very much appreciated.

Comments are closed.