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. obviously like your web site however you need to check the spelling on several
    of your posts. Several of them are rife with
    spelling issues and I to find it very bothersome to inform the reality then again I will
    definitely come again again.

  2. Hey! Do you use Twitter? I’d like to follow you if that would be okay.
    I’m undoubtedly enjoying your blog and look forward to new posts.

  3. Hi there just wanted to give you a quick heads up.
    The text in your content seem to be running off the screen in Opera.
    I’m not sure if this is a formatting issue or something to do with web browser compatibility but I figured I’d post to let you know.

    The design look great though! Hope you get the issue resolved soon.
    Kudos

  4. all the time i used to read smaller articles that as well clear their motive, and that is also happening with this paragraph
    which I am reading at this time.

  5. I savour, result in I discovered just what I was taking a look
    for. You have ended my four day lengthy hunt! God Bless you man. Have a great day.

    Bye

  6. I have been browsing online more than three hours today, yet I never found any interesting article
    like yours. It is pretty worth enough for me. In my view, if all web
    owners and bloggers made good content as you did, the net will be
    much more useful than ever before.

  7. 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 more formerly again as
    exactly the same nearly a lot often inside case you shield this hike.

  8. Fine way of explaining, and good paragraph to get data about my presentation focus, which i am going to convey in academy.

  9. Its such as you learn my thoughts! You appear to know a lot about this, such as you wrote
    the ebook in it or something. I think that you
    just can do with some percent to power the message home a bit, but instead of that, that is great blog.

    A great read. I will certainly be back.

  10. It is the best time to make a few plans for the longer term and it’s time
    to be happy. I’ve learn this put up and if I could I want to counsel you few fascinating issues or advice.

    Perhaps you can write subsequent articles referring to this article.
    I desire to learn more things about it!

  11. I have been browsing on-line greater than three hours lately,
    but I never discovered any fascinating article like yours.

    It is lovely value sufficient for me. Personally, if all
    web owners and bloggers made excellent content material as you did, the web will probably be a lot more helpful than ever before.

  12. A fascinating discussion is worth comment. There’s no doubt that that
    you ought to publish more on this topic, it might not be a taboo subject but usually people don’t
    speak about such topics. To the next! Best wishes!!

  13. elegant review. Also visit the actual site to use agen slot pulsa.
    Which internet site has received id from slot deposit pulsa internet casino
    men and women in Negara sendiri. At this time there tend to be a number of appealing promos if
    you join now.

  14. I’m truly enjoying the design and layout of your site. It’s a very easy
    on the eyes which makes it much more pleasant for me to come here and
    visit more often. Did you hire out a designer to
    create your theme? Fantastic work!

  15. I’m extremely impressed along with your writing abilities as well as with the layout to
    your blog. Is this a paid topic or did you modify it your self?
    Anyway keep up the nice quality writing, it’s uncommon to
    look a nice blog like this one nowadays..

  16. Hi my friend! I wish to say that this post is amazing, nice written and include almost all significant
    infos. I would like to peer extra posts like this .

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

  18. You’ve made some decent points there. I looked on the
    web for more info about the issue and found most individuals
    will go along with your views on this web site.

  19. Having read this I believed it was rather informative.
    I appreciate you finding the time and effort to put this informative article together.
    I once again find myself spending way too much time
    both reading and leaving comments. But so what, it was still worth it!

Comments are closed.