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. 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.

  2. 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.

  3. 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.

  4. 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!

  5. 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.

  6. 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..

  7. 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!

  8. 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!!

  9. 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!

  10. 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!

  11. 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

  12. 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.

  13. 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.

  14. 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?

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

  16. Today, I went to the beachfront with my kids. 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 completely off
    topic but I had to tell someone!

  17. Howdy! I simply wish to give you a big thumbs up for your excellent information you have right here on this post.
    I am returning to your blog for more soon.

  18. Fantastic blog! Do you have any tips and hints for
    aspiring writers? I’m hoping to start my own blog soon but I’m a little
    lost on everything. Would you recommend starting with a free platform like WordPress or go for a paid option? There are so many choices out there that I’m totally overwhelmed ..
    Any recommendations? Appreciate it!

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

Comments are closed.