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

  1. I loved as much as you will receive carried out right here.

    The sketch is attractive, your authored material stylish.
    nonetheless, you command get bought an shakiness 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.

  2. I don’t know whether it’s just me or if everybody else encountering issues with your
    site. It appears as if some of the written text on your posts are running
    off the screen. Can somebody else please comment and let me
    know if this is happening to them too? This might be a issue
    with my web browser because I’ve had this happen before.
    Kudos

  3. Wow, amazing blog layout! How lengthy have you ever been blogging for?
    you made blogging glance easy. The total look of your web site is magnificent, let alone the content!

  4. Attractive section of content. I just stumbled upon your site and in accession capital
    to assert that I get in fact enjoyed account your blog posts.
    Any way I will be subscribing to your augment and even I
    achievement you access consistently rapidly.

  5. I pay a quick visit every day a few web sites and information sites to read content, but this blog provides feature
    based writing.

  6. Hi, I do believe this is a great site. I stumbledupon it 😉 I am
    going to come back yet again since i have bookmarked
    it. Money and freedom is the best way to change, may you be rich and
    continue to help other people.

  7. excellent issues altogether, you just gained a logo new reader.

    What could you recommend in regards to your put up that you made a few days ago?

    Any positive?

  8. After I originally left a comment I appear to have clicked
    the -Notify me when new comments are added- checkbox
    and now each time a comment is added I recieve 4 emails with the exact same comment.
    Is there a way you can remove me from that service? Appreciate
    it!

  9. I’ve been surfing online more than three hours today,
    yet I never found any interesting article like yours.
    It’s pretty worth enough for me. In my opinion, if all webmasters and bloggers made
    good content as you did, the internet will be much more useful than ever before.

  10. I do not even understand how I stopped up here, but I thought this publish was great.
    I don’t understand who you are but certainly you are going
    to a famous blogger if you are not already. Cheers!

  11. Hi, constantly i used to check webpage posts here in the early hours in the daylight, since i like to learn more
    and more.

  12. Good day! Do you know if they make any plugins
    to help with SEO? I’m trying to get my blog to rank for some targeted
    keywords but I’m not seeing very good success.

    If you know of any please share. Appreciate it!

  13. For most up-to-date information you have to pay a visit web and on world-wide-web I found this web page as
    a best site for newest updates.

  14. No matter if some one searches for his necessary thing, therefore
    he/she needs to be available that in detail, therefore that thing is maintained
    over here.

  15. Somebody necessarily assist to make severely articles I might state.

    This is the first time I frequented your web page and to this point?
    I amazed with the research you made to make this particular post extraordinary.
    Excellent job!

  16. Have you ever thought about including a little bit more than just your articles?
    I mean, what you say is important and everything. Nevertheless imagine if
    you added some great pictures or videos to give your
    posts more, “pop”! Your content is excellent but with pics and
    videos, this site could undeniably be one of the greatest in its niche.
    Good blog!

  17. Have you ever considered about including a little bit more
    than just your articles? I mean, what you say is important and all.
    But just imagine if you added some great images or video clips to give your posts more, “pop”!

    Your content is excellent but with images and clips, this site could
    undeniably be one of the most beneficial in its field. Wonderful blog!

  18. Its such as you read my thoughts! You appear to grasp a lot about this,
    such as you wrote the e book in it or something. I believe that you just could do with some %
    to pressure the message home a little bit, but other than that, this is magnificent blog.
    An excellent read. I will definitely be back.

  19. Hey 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
    results.

  20. Hi there! I could have sworn I’ve been to this blog before but after browsing through some of the post I realized
    it’s new to me. Anyways, I’m definitely glad I found it and I’ll be bookmarking and checking back frequently!

  21. I have been exploring for a little for any high quality articles or weblog posts in this kind
    of house . Exploring in Yahoo I at last stumbled upon this
    web site. Reading this information So i’m satisfied to show that I have
    a very good uncanny feeling I discovered just what I needed.
    I such a lot indubitably will make certain to do not forget this web site and provides it a look regularly.

  22. Yesterday, while I was at work, my sister stole my apple ipad and
    tested to see if it can survive a forty foot drop, just so she can be a youtube sensation. My
    iPad is now destroyed and she has 83 views. I know this is completely off topic
    but I had to share it with someone!

  23. Very great post. I just stumbled upon your weblog and wished to mention that I have truly
    loved surfing around your blog posts. In any case I will be subscribing for
    your rss feed and I hope you write once more very soon!

Comments are closed.