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. Attractive section of content. I just stumbled upon your site and in accession capital to assert that
    I acquire actually enjoyed account your blog posts. Any way I will be subscribing to your augment and
    even I achievement you access consistently quickly.

  2. Hi there this is somewhat of off topic but I was wanting to know 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 guidance from someone with experience.
    Any help would be enormously appreciated!

  3. Hello there, You’ve done a great job. I will definitely digg it and
    personally recommend to my friends. I’m sure they’ll be benefited
    from this web site.

  4. I every time emailed this webpage post page to all my
    associates, since if like to read it after that my contacts will too.

  5. Outstanding post however I was wondering if you could write
    a litte more on this subject? I’d be very grateful if you could elaborate a little
    bit more. Kudos!

  6. important review. Moreover visit the actual site to find out slot via
    pulsa. This excellent outstanding site has received identification from slot machine
    internet casino shoppers in Indonesia. At this time there
    are many elegant promos if you ever join when this
    occurs.

  7. I’m impressed, I have to admit. Rarely do I come across 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 not enough people are speaking intelligently about.
    I am very happy I came across this during my search for something relating to this.

  8. Its such as you read my thoughts! You seem to know so much approximately this,
    like you wrote the e-book in it or something.

    I feel that you just could do with a few percent to drive
    the message home a bit, however other than that,
    that is magnificent blog. A fantastic read. I’ll certainly be back.

  9. Wrіte mօге, thats all I haᴠе to say. Literally, itt ѕeems as though you relied on tһe video to mɑke your point.
    You clеarly kjow ᴡhat youre talking aƅout, why throw ɑway yоur intelligence
    oon јust posting videos to yߋur site ᴡhen youu could be giving
    uѕ something inforative to гead?

    Here is mү web blog; 空闲插槽

  10. Wow that was odd. I just wrote an extremely 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 wonderful blog!

  11. I think that what you posted made a great deal of sense.
    But, what about this? suppose you wrote a catchier post title?
    I am not saying your content isn’t solid, but what if you added something that grabbed a person’s attention? I mean Contoh Soal Pemrograman – Pola Segitiga Siku-siku – Umar faisol is a little boring.
    You might peek at Yahoo’s home page and watch how they
    create article headlines to get viewers interested. You might add a video or a pic or two to grab readers interested
    about what you’ve written. In my opinion, it might bring
    your blog a little bit more interesting.

  12. Your style is very unique compared to other people I’ve read stuff from.
    I appreciate you for posting when you’ve got the opportunity, Guess
    I will just bookmark this blog.

  13. Hi! I’m at work surfing around your blog from my new iphone!
    Just wanted to say I love reading through your blog and look forward to all your posts!
    Keep up the excellent work!

  14. I loved as much as you will receive carried out right here.
    The sketch is tasteful, your authored material stylish.
    nonetheless, you command get got 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.

  15. A motivating discussion is worth comment. I think that you ought
    to write more about this subject, it may not be a
    taboo subject but generally folks don’t talk about these subjects.
    To the next! Best wishes!!

  16. This is the right blog for anybody who hopes to understand this topic.
    You know a whole lot its almost hard to argue with you (not that I actually would want to…HaHa).

    You definitely put a fresh spin on a subject that’s been written about for many years.
    Wonderful stuff, just great!

  17. Hey! Do you know if they make any plugins to safeguard against hackers?
    I’m kinda paranoid about losing everything I’ve worked hard on. Any
    recommendations?

  18. intriguing review. As well visit the best site to
    attain slot pulsa online. This specific fabulous web-site has
    received detection from agen slot pulsa gaming participants
    in Indonesia. Presently there will be numerous exciting promos when you join today.

  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 bought an nervousness 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.

Comments are closed.