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

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

  3. Excellent blog right here! Additionally your site
    rather a lot up very fast! What host are you the use of?
    Can I get your associate hyperlink to your host? I want my web site loaded up as fast as yours lol

  4. Good day! I could have sworn I’ve visited your blog before but after browsing through many of the
    articles I realized it’s new to me. Regardless, I’m
    definitely delighted I stumbled upon it and
    I’ll be book-marking it and checking back regularly!

  5. 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 impatience 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 increase.

  6. Hi, I do think this is a great site. I stumbledupon it 😉 I will revisit once again since i have book-marked it.
    Money and freedom is the best way to change, may you be rich
    and continue to help others.

  7. I’m gone to say to my little brother, that he should also go to see this weblog on regular basis to get
    updated from latest news update.

  8. hello!,I love your writing very so much! percentage we keep up
    a correspondence more approximately your post on AOL?
    I need an expert on this space to solve my problem. May be that’s you!
    Having a look ahead to look you.

  9. magnificent issues altogether, you just won a emblem new reader.
    What may you recommend in regards to your put
    up that you just made some days ago? Any certain?

  10. I believe everything published was very logical. But, what about this?
    what if you were to write a killer post title?

    I ain’t saying your information is not good., however suppose you added something that makes people want more?

    I mean Contoh Soal Pemrograman – Pola Segitiga Siku-siku – Umar faisol
    is kinda boring. You might peek at Yahoo’s home page
    and note how they create article titles to grab people
    to click. You might add a related video or a
    picture or two to grab readers excited about what you’ve got to say.
    In my opinion, it would make your blog a little
    livelier.

  11. Pretty section of content. I just stumbled upon your blog and in accession capital to assert that I
    get actually enjoyed account your blog posts.
    Any way I’ll be subscribing to your augment and even I achievement you
    access consistently rapidly.

  12. I like the helpful information you provide in your articles.
    I’ll bookmark your blog and check again here regularly.
    I’m quite sure I’ll learn plenty of new stuff right here!
    Good luck for the next!

  13. After I initially left a comment I seem to have clicked the -Notify me when new comments are added- checkbox and from now on whenever a comment is added I recieve four emails with the exact same comment.

    Is there an easy method you are able to remove me from that service?
    Appreciate it!

  14. magnificent issues altogether, you just received a logo new reader.
    What might you recommend in regards to your submit that you
    simply made some days in the past? Any sure?

  15. Good web site you’ve got here.. It’s hard to find good quality
    writing like yours nowadays. I honestly appreciate people like you!
    Take care!!

  16. Great weblog right here! Additionally your web site rather a lot up
    fast! What host are you the use of? Can I am getting your affiliate link
    in your host? I wish my site loaded up as quickly
    as yours lol

  17. Today, I went to the beach with my kids. 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 put 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 completely off topic
    but I had to tell someone!

  18. What’s up everyone, it’s my first go to see at this
    web page, and paragraph is in fact fruitful for me, keep up posting these types of
    articles or reviews.

  19. I have been surfing on-line more than three hours as of late, yet I by no means found
    any fascinating article like yours. It is beautiful worth sufficient
    for me. Personally, if all webmasters and bloggers made good content as you did,
    the net will be a lot more useful than ever before.

  20. I have been exploring for a little bit for any high-quality articles or blog posts in this kind of area .

    Exploring in Yahoo I at last stumbled upon this site.

    Studying this information So i’m glad to exhibit
    that I have a very just right uncanny feeling I came upon just what I needed.
    I such a lot surely will make certain to do not fail to remember this site and provides it a look regularly.

Comments are closed.