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. I don’t know if it’s just me or if everybody else encountering problems with your blog.
    It appears as if some of the written text within your posts
    are running off the screen. Can someone else please comment and let me know if this
    is happening to them too? This could be a issue with my web
    browser because I’ve had this happen previously.
    Cheers

  2. I like the helpful information you provide in your articles.
    I’ll bookmark your weblog and check again here regularly.
    I am quite certain I’ll learn lots of new stuff
    right here! Best of luck for the next!

  3. each time i used to read smaller posts that also clear their motive, and that is
    also happening with this article which I am reading at this time.

  4. Официальный сайт Вавада

    Вообще тут в Вавада много моих знакомых играет, вот и я недавно сподобился. Честно, если бы не демо режим, так бы и не решился. А так очень доволен остался. Это конечно нечто! Просто нету слов. Да и знакомые хвалятся, что иной раз очень неплохо тут деньги подымают, так что игра похоже стоит свеч

  5. Greetings from Florida! I’m bored at work so I decided to check out your
    blog on my iphone during lunch break. I love the knowledge you provide here and can’t wait to take a look
    when I get home. I’m shocked at how quick your blog loaded
    on my mobile .. I’m not even using WIFI, just 3G ..
    Anyhow, fantastic site!

  6. I for all time emailed this webpage post page to
    all my contacts, for the reason that if like to read it then my
    contacts will too.

  7. Hi, I do believe this is a great web site. I stumbledupon it 😉 I will revisit yet again since i
    have book-marked it. Money and freedom is
    the greatest way to change, may you be rich and continue to guide
    others.

  8. Its like you read my mind! You seem to know a lot about this, like
    you wrote the book in it or something. I believe that
    you just can do with a few % to pressure the message home a little
    bit, but other than that, that is fantastic blog.
    A great read. I’ll certainly be back.

  9. You can certainly see your enthusiasm within the article you write.
    The sector hopes for even more passionate writers
    such as you who are not afraid to say how they
    believe. At all times go after your heart.

  10. I loved as much as you’ll receive carried out right here.
    The sketch is attractive, your authored material stylish.

    nonetheless, you command get got an nervousness over that
    you wish be delivering the following. unwell unquestionably come further formerly again since exactly the same nearly very often inside case you shield this hike.

  11. 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 useful information to work
    on. You have done a outstanding job!

  12. When some one searches for his necessary thing, therefore
    he/she wants to be available that in detail, therefore that thing is maintained over
    here.

  13. When I originally commented I seem to have clicked the -Notify me when new comments are added- checkbox and from now on every time a
    comment is added I receive four emails with the exact same comment.
    Is there a means you are able to remove me from that service?
    Cheers!

  14. I like the helpful information you provide in your
    articles. I’ll bookmark your weblog and check again here
    frequently. I’m quite certain I’ll learn a lot of new stuff right here!
    Good luck for the next!

  15. If some one needs expert view on the topic of blogging afterward i
    advise him/her to visit this web site, Keep up the
    good work.

  16. Wow, this article is nice, my younger sister is analyzing
    these things, therefore I am going to convey her.

  17. After I initially commented I seem to have
    clicked on the -Notify me when new comments are added- checkbox and now each time
    a comment is added I receive 4 emails with the exact same
    comment. Is there a means you are able to remove me from that service?
    Appreciate it!

  18. Hello 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 web browsers and both show the same outcome.

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

Comments are closed.