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. With havin so much content do you ever run into any
    problems of plagorism or copyright violation? My site has a lot of completely unique content I’ve
    either created myself or outsourced but it seems a lot of it is popping it
    up all over the web without my agreement. Do you know any ways to
    help prevent content from being stolen? I’d certainly appreciate it.

  2. Hello, I do think your blog could possibly be having browser compatibility
    issues. When I take a look at your blog in Safari, it looks fine but
    when opening in I.E., it has some overlapping issues. I merely wanted to give
    you a quick heads up! Apart from that, wonderful site!

  3. Hi! I’ve been reading your web site for a while now and finally got
    the bravery to go ahead and give you a shout out from Humble Texas!

    Just wanted to mention keep up the fantastic job!

  4. 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 bought an edginess 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 hike.

  5. I loved as much as you’ll receive carried out right here.
    The sketch is attractive, your authored material stylish.
    nonetheless, you command get got an shakiness 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.

  6. Hi there! I’m at work surfing around your blog from my
    new apple iphone! Just wanted to say I love reading through your blog and look forward to all
    your posts! Carry on the fantastic work!

  7. Hi to every body, it’s my first visit of this weblog; this web site carries remarkable and
    truly excellent stuff designed for readers.

  8. For newest news you have to visit world wide web and on internet I found
    this web site as a most excellent site for latest updates.

  9. Howdy just wanted to give you a quick heads up and let you know a few
    of the images aren’t loading correctly. I’m not sure why but I think its a linking issue.
    I’ve tried it in two different web browsers and both show the same results.

  10. Pretty 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 augment and even I achievement you access consistently quickly.

  11. Link exchange is nothing else but it is simply placing the other person’s blog link on your page at suitable place and other
    person will also do same in support of you.

  12. Does your site have a contact page? I’m having problems
    locating it but, I’d like to shoot you an email.
    I’ve got some suggestions for your blog you might be interested in hearing.
    Either way, great blog and I look forward to seeing it grow over time.

  13. What’s up, after reading this remarkable piece of writing i
    am as well cheerful to share my knowledge here with friends.

  14. I think that everything posted made a ton of sense. But, think about this,
    suppose you added a little content? I ain’t suggesting your information isn’t good, but suppose you added a headline that grabbed people’s attention? I mean Contoh Soal Pemrograman –
    Pola Segitiga Siku-siku – Umar faisol is a little vanilla.
    You could glance at Yahoo’s front page and see how they create post titles to grab people interested.

    You might try adding a video or a pic or two to grab
    readers excited about what you’ve written. In my opinion, it might make
    your blog a little bit more interesting.

  15. Hi there, i read your blog from time to time and i own a similar one
    and i was just curious if you get a lot of spam responses?
    If so how do you stop it, any plugin or anything
    you can recommend? I get so much lately it’s driving me insane so any help is very much appreciated.

  16. What’s up, for all time i used to check weblog posts here early in the break of day,
    since i love to gain knowledge of more and more.

  17. I’m amazed, I must say. Rarely do I come across a blog that’s equally educative and interesting, and without a doubt, you’ve hit the nail on the head.
    The issue is something which not enough men and women are speaking intelligently about.

    Now i’m very happy I found this in my hunt for something concerning this.

Comments are closed.