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,635 thoughts on “Contoh Soal Pemrograman – Pola Segitiga Siku-siku

  1. Hey there! I’ve been reading your site for a long time now and finally got
    the courage to go ahead and give you a shout out from Huffman Texas!
    Just wanted to mention keep up the good job!

  2. I do not even understand how I stopped up here, however I assumed
    this submit was once great. I don’t understand who you’re however definitely you
    are going to a famous blogger should you aren’t already.
    Cheers!

  3. For the reason that the admin of this site is working, no uncertainty very rapidly it will be renowned,
    due to its quality contents.

  4. Howdy! This is my first visit to your blog! We are a group of volunteers and starting a new project in a community in the same niche.
    Your blog provided us beneficial information to work on. You have done a wonderful
    job!

  5. Nice weblog here! Also your web site rather a lot up fast!
    What host are you the usage of? Can I get your associate
    hyperlink on your host? I desire my web site loaded up as fast
    as yours lol

  6. magnificent points altogether, you just gained a new reader.
    What might you suggest about your put up that you just
    made a few days in the past? Any sure?

  7. I’m amazed, I must say. Rarely do I encounter a blog that’s equally educative and interesting, and let me tell you,
    you have hit the nail on the head. The issue is an issue
    that not enough people are speaking intelligently about.
    I’m very happy that I found this during my hunt for something relating to this.

  8. Link exchange is nothing else however it is only placing the other person’s webpage link
    on your page at suitable place and other person will also do same
    in favor of you.

  9. I’m impressed, I must say. Seldom 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 that not enough men and women are speaking
    intelligently about. Now i’m very happy that I came across this during my
    search for something concerning this.

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

  11. It’s a pity you don’t have a donate button! I’d certainly donate to this superb blog!
    I suppose for now i’ll settle for book-marking and adding your RSS feed to my Google account.
    I look forward to new updates and will talk about this site with my Facebook group.
    Talk soon!

  12. Excellent way of explaining, and pleasant piece of writing
    to take data about my presentation focus, which i am going to
    convey in college.

  13. I have been surfing on-line more than 3 hours lately, yet I never found any fascinating article like
    yours. It is lovely value enough for me. In my view, if all web
    owners and bloggers made excellent content material as you did, the web will probably be much more useful than ever before.

  14. Hey there! I’ve been reading your weblog for some time now and finally got the courage to
    go ahead and give you a shout out from Kingwood Tx!

    Just wanted to mention keep up the excellent work!

  15. I have been exploring for a little bit for any high-quality articles or blog posts
    on this sort of house . Exploring in Yahoo I at last stumbled upon this web site.
    Reading this info So i am happy to convey that I have
    an incredibly good uncanny feeling I discovered exactly what I
    needed. I such a lot without a doubt will make certain to do not fail to remember this site and provides it a look
    on a relentless basis.

  16. Write more, thats all I have to say. Literally, it seems
    as though you relied on the video to make
    your point. You definitely know what youre talking about, why throw away your intelligence on just posting videos to your site when you could
    be giving us something informative to read?

  17. Right here is the perfect web site for anybody who wants
    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 brand new spin on a topic which has been discussed for years.

    Wonderful stuff, just excellent!

  18. I got this site from my pal who told me regarding this site and now this time I am browsing this site
    and reading very informative articles here.

Comments are closed.