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. What’s Going down i am new to this, I stumbled upon this I have discovered
    It absolutely useful and it has aided me out loads.

    I am hoping to contribute & help different users like its helped me.
    Great job.

  2. 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 knowledge so I wanted to get guidance from someone with experience.
    Any help would be greatly appreciated!

  3. Aw, this was a very good post. Finding the time and actual effort to generate a superb article… but
    what can I say… I procrastinate a lot and never seem
    to get anything done.

  4. Hi this is kinda 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 expertise so I wanted to get guidance from someone
    with experience. Any help would be greatly appreciated!

  5. I do not even know the way I stopped up right here, but I believed this put up used to be great.
    I don’t realize who you might be however certainly you are going to a well-known blogger if you happen to aren’t already.
    Cheers!

  6. Howdy, i read your blog occasionally and i own a similar one and i was just curious if you get a
    lot of spam comments? If so how do you reduce it, any plugin or anything you can recommend?
    I get so much lately it’s driving me insane so any assistance is
    very much appreciated.

  7. Hello there! 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 suggestions?

  8. interesting review. Furthermore visit this specific
    site to test judi slot. Fantastic web site has received identification from
    the comfort of slot casino challengers in Dalam negri.

    Presently there are many elegant promos for many who join here.

  9. Hi 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 knowledge so I
    wanted to get guidance from someone with experience.

    Any help would be enormously appreciated!

  10. Fine way of telling, and nice piece of writing to take data on the topic of my presentation focus, which i am going to convey in school.

  11. Hi there! I know this is kinda off topic but 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 discusses a lot of the same topics as yours and I think we could greatly benefit
    from each other. If you are interested feel free to send me
    an email. I look forward to hearing from you!
    Fantastic blog by the way!

  12. Attractive component to content. I simply stumbled upon your site and in accession capital to claim that
    I acquire actually enjoyed account your weblog
    posts. Any way I’ll be subscribing to your augment or even I success you get admission to constantly fast.

  13. We are a group of volunteers and opening a new
    scheme in our community. Your web site offered us with valuable info to work on. You have done a formidable job and our whole community will be grateful to you.

  14. I just like the valuable info you supply to
    your articles. I’ll bookmark your blog and test again here regularly.
    I am somewhat certain I’ll be told plenty of
    new stuff proper right here! Good luck for the next!

  15. Hello! I could have sworn I’ve visited this site before but after browsing through a few of
    the articles I realized it’s new to me. Regardless, I’m definitely happy I came across
    it and I’ll be book-marking it and checking back frequently!

  16. What i do not realize is in reality how you are not actually much more smartly-liked than you may
    be now. You’re very intelligent. You recognize therefore considerably in relation to this subject,
    produced me in my opinion consider it from a lot of various angles.
    Its like women and men aren’t fascinated unless
    it is one thing to accomplish with Girl gaga!
    Your own stuffs nice. All the time care for it up!

Comments are closed.