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. Asking questions are actually fastidious thing if
    you are not understanding something totally, but this piece of writing offers pleasant understanding yet.

  2. 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 weblog when you could be giving us something enlightening to read?

  3. Hey there! I know this is kinda off topic however , I’d figured
    I’d ask. Would you be interested in exchanging links or maybe guest writing a blog
    post or vice-versa? My site covers a lot of the same topics as yours
    and I think we could greatly benefit from each other.
    If you might be interested feel free to send me an email.

    I look forward to hearing from you! Fantastic blog by
    the way!

  4. Hey there! 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 results.
    If you know of any please share. Cheers!

  5. Having read this I believed it was extremely informative.
    I appreciate you spending some time and effort to put this informative
    article together. I once again find myself personally spending a lot
    of time both reading and leaving comments. But so what, it
    was still worthwhile!

  6. Hello to every body, it’s my first go to see of this weblog; this web site includes remarkable
    and in fact excellent stuff in favor of readers.

  7. 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
    put 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 totally off topic but I had to tell someone!

  8. Hi there everybody, here every one is sharing these kinds of knowledge, therefore it’s nice to read
    this webpage, and I used to pay a quick visit this weblog everyday.

  9. I believe what you typed was very reasonable. However, think on this, suppose you wrote a
    catchier title? I am not suggesting your content isn’t good, but suppose you
    added a title that makes people want more?

    I mean Contoh Soal Pemrograman – Pola Segitiga Siku-siku – Umar faisol is kinda plain. You ought to peek at Yahoo’s home page and note how they create news titles to grab people interested.

    You might add a related video or a pic or two to get people interested about everything’ve got
    to say. In my opinion, it could make your posts a little livelier.

  10. I love what you guys are usually up too. This kind of clever work and exposure!
    Keep up the excellent works guys I’ve you guys to my own blogroll.

  11. Wow that was odd. I just wrote an incredibly long comment but after I clicked submit my comment didn’t appear.
    Grrrr… well I’m not writing all that over again. Anyways, just wanted to say great blog!

  12. Hello to all, how is everything, I think every one is getting more from this site, and your
    views are good designed for new visitors.

  13. I’m extremely impressed together with your writing abilities as well as
    with the structure to your blog. Is that this a paid topic or did you customize it yourself?

    Anyway keep up the excellent quality writing, it is uncommon to see a
    nice blog like this one nowadays..

  14. Somebody necessarily help to make significantly posts
    I would state. That is the first time I frequented your web page and
    up to now? I surprised with the research you made to create this actual submit incredible.
    Fantastic activity!

  15. An interesting discussion is definitely worth comment.
    I think that you should publish more about this
    subject matter, it may not be a taboo matter but generally folks don’t speak about
    these topics. To the next! All the best!!

  16. Right here is the perfect webpage for anybody who wants to find out about this topic.
    You understand a whole lot its almost hard to argue with you (not
    that I actually will need to…HaHa). You certainly put a new spin on a topic that’s been discussed for ages.
    Great stuff, just wonderful!

  17. You should be a part of a contest for one of the best blogs on the net.
    I am going to recommend this web site!

  18. Wow! This blog looks exactly like my old one! It’s on a entirely different
    topic but it has pretty much the same page layout
    and design. Wonderful choice of colors!

    Feel free to surf to my blog post; livechat sv388

  19. I loved as much as you’ll receive carried out right here.
    The sketch is tasteful, your authored subject matter stylish.
    nonetheless, you command get got an edginess over that you wish be
    delivering the following. unwell unquestionably come more formerly again since exactly the same nearly very often inside case you shield this hike.

  20. I’m impressed, I must say. Seldom do I encounter a blog that’s equally
    educative and entertaining, and without a doubt, you’ve hit the nail on the head.
    The problem is something that too few men and women are
    speaking intelligently about. Now i’m very happy I came across this in my hunt for something concerning this.

  21. At this time it sounds like Movable Type is the preferred blogging platform out there
    right now. (from what I’ve read) Is that what you are using on your blog?

  22. I pay a quick visit everyday some sites and information sites to read articles or reviews,
    except this web site offers feature based posts.

Comments are closed.