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. Wow! This blog looks exactly like my old one! It’s on a
    completely different topic but it has pretty much the same page layout and design. Great choice of colors!

  2. Its like you learn my mind! You appear to grasp so much
    about this, such as you wrote the e-book in it or something.
    I think that you could do with a few % to drive the message home a little bit, however other than that, this
    is wonderful blog. A great read. I will certainly be
    back.

  3. Heya i’m for the primary time here. I came across this board and I to find It truly useful & it
    helped me out much. I hope to provide something again and aid others such as you helped me.

  4. My spouse and I stumbled over here by a different page and thought I might as well check things out.

    I like what I see so now i’m following you. Look forward to checking
    out your web page for a second time.

  5. I just could not go away your site prior to suggesting that I extremely enjoyed the usual information an individual provide in your guests?

    Is going to be again frequently to check up on new posts

  6. Write more, thats all I have to say. Literally, it seems as though you relied on the video to make your point.
    You obviously know what youre talking about, why throw away your intelligence on just posting videos to your blog
    when you could be giving us something enlightening to read?

  7. You can certainly see your skills within the article you write.
    The arena hopes for even more passionate writers such as you who are not afraid to mention how they believe.
    All the time follow your heart.

  8. I’m impressed, I have to admit. Rarely do I come across a blog that’s both equally educative and
    interesting, and without a doubt, you have hit the nail
    on the head. The problem is something that too few folks are speaking
    intelligently about. I am very happy that I stumbled across this in my hunt for something relating to this.

  9. Hey! I just wanted to ask if you ever have any trouble with hackers?

    My last blog (wordpress) was hacked and I ended up losing a few
    months of hard work due to no backup. Do you have any methods to
    stop hackers?

  10. Excellent blog you’ve got here.. It’s difficult to find high-quality writing like yours these days.
    I seriously appreciate individuals like you! Take
    care!!

  11. Hey there this is kind of of off topic but I was wondering if blogs
    use WYSIWYG editors or if you have to manually code with HTML.
    I’m starting a blog soon but have no coding skills so I wanted to
    get advice from someone with experience.

    Any help would be enormously appreciated!

  12. Attractive section of content. I just stumbled upon your site and in accession capital to assert that I get in fact enjoyed account your blog posts.

    Anyway I’ll be subscribing to your feeds and even I achievement you access
    consistently fast.

  13. When some one searches for his necessary thing, so he/she wishes
    to be available that in detail, thus that thing is maintained over here.

  14. Hi! I simply would like to give you a huge thumbs up for the great info you
    have right here on this post. I will be coming back to your
    blog for more soon.

  15. When I initially commented I appear to have clicked the -Notify me when new comments are added- checkbox and from now on every time a comment is added
    I receive 4 emails with the exact same comment.
    There has to be a way you can remove me from that service?
    Cheers!

  16. Very nice post. I just stumbled upon your weblog and wanted to say that I have truly
    enjoyed browsing your blog posts. After all I’ll be subscribing to your rss feed and I hope you write again soon!

  17. Hi there! I’m at work browsing your blog from my new iphone 4!
    Just wanted to say I love reading your blog and look forward to all your posts!
    Keep up the outstanding work!

  18. Today, I went to the beachfront with my children.
    I found a sea shell and gave it to my 4 year old daughter and
    said “You can hear the ocean if you put this to your ear.” She placed the shell to her ear and screamed.

    There was a hermit crab inside and it pinched her ear.

    She never wants to go back! LoL I know this is entirely off topic
    but I had to tell someone!

  19. I loved as much as you will receive carried out right here.
    The sketch is attractive, your authored subject matter
    stylish. nonetheless, you command get got
    an impatience over that you wish be delivering the following.
    unwell unquestionably come further formerly again as exactly the same
    nearly a lot often inside case you shield this increase.

  20. What’s Happening i am new to this, I stumbled upon this I
    have discovered It positively helpful and it
    has helped me out loads. I hope to contribute & aid
    different users like its helped me. Good job.

  21. Hey! This is my first visit to your blog! We are a team of volunteers and starting a new project in a community in the same
    niche. Your blog provided us useful information to work on. You have done a
    outstanding job!

Comments are closed.