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. Hmm it looks like your blog ate my first comment (it was super long) so I guess I’ll
    just sum it up what I had written and say, I’m thoroughly enjoying your blog.
    I as well am an aspiring blog blogger but I’m still new to the whole thing.
    Do you have any helpful hints for rookie blog writers? I’d certainly appreciate it.

  2. I loved as much as you will receive carried
    out right here. The sketch is tasteful,
    your authored subject matter stylish. nonetheless, you command get bought an impatience over that you
    wish be delivering the following. unwell unquestionably come more
    formerly again as exactly the same nearly a lot often inside case you shield
    this increase.

  3. Today, I went to the beach front 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 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 entirely
    off topic but I had to tell someone!

  4. exciting review. Additionally it is effective visit usually the site to experience agen slot deposit pulsa.
    These kind of pages has received attractiveness coming
    from slot via pulsa video gaming sufferers in Dalam negri.
    Presently there are usually a great deal of lovely promos in the event you join at this time.

  5. Howdy! I could have sworn I’ve visited your blog before but after browsing through some
    of the articles I realized it’s new to me. Anyways, I’m certainly
    happy I found it and I’ll be bookmarking it and checking back often!

  6. Its like you read my mind! You seem to know a lot about this,
    like you wrote the book in it or something. I think that you could do with a
    few pics to drive the message home a bit, but instead of that, this is fantastic blog.
    A fantastic read. I’ll definitely be back.

  7. you’re actually a good webmaster. The site loading pace is
    amazing. It kind of feels that you’re doing any distinctive trick.
    In addition, The contents are masterpiece. you have done a great
    activity on this subject!

  8. I’m gone to tell my little brother, that he should also
    pay a quick visit this weblog on regular basis to take updated from hottest information.

  9. We are a bunch of volunteers and opening a new scheme in our community.
    Your site offered us with valuable information to work on. You’ve performed a formidable activity and our whole group can be grateful to you.

  10. I absolutely love your site.. Great colors & theme.
    Did you build this amazing site yourself? Please reply back
    as I’m wanting to create my own blog and would like to find
    out where you got this from or exactly what the theme is named.

    Cheers!

  11. Hi! 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?

  12. We are a bunch of volunteers and opening a new scheme in our community.
    Your site offered us with helpful info to work on. You’ve performed an impressive task
    and our entire community might be grateful to you.

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

  14. Hey! I just wanted to ask if you ever have any trouble with hackers?
    My last blog (wordpress) was hacked and I ended up losing several weeks of hard
    work due to no back up. Do you have any methods to prevent hackers?

  15. Heya this is kind of 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 experience so I wanted to get
    advice from someone with experience. Any help would be enormously
    appreciated!

  16. Attractive section of content. I just stumbled upon your site and in accession capital to say that I acquire in fact loved account your blog
    posts. Anyway I will be subscribing on your augment or even I
    achievement you get right of entry to persistently quickly.

  17. I’m impressed, I have to admit. Rarely do I
    come across a blog that’s both educative and engaging, and let me tell you, you’ve hit the nail
    on the head. The issue is something not enough men and women are speaking intelligently about.

    Now i’m very happy I came across this during my search for something regarding this.

  18. Having read this I thought it was rather enlightening.

    I appreciate you finding the time and effort to put this information together.
    I once again find myself personally spending a significant amount of time
    both reading and leaving comments. But so what,
    it was still worthwhile!

  19. Very shortly this web site will be famous amid all blogging and site-building
    viewers, due to it’s fastidious articles or reviews

Comments are closed.