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 like the helpful info you provide in your articles. I will
    bookmark your weblog and check again here frequently.
    I am quite sure I’ll learn many new stuff right here!
    Good luck for the next!

  2. Hi there terrific blog! Does running a blog similar to this require a large amount of work?

    I have very little knowledge of programming however I
    was hoping to start my own blog soon. Anyway, if you have
    any suggestions or tips for new blog owners please share. I understand this is off topic nevertheless I simply wanted to ask.

    Cheers!

  3. What’s Happening i’m new to this, I stumbled upon this I have discovered It positively useful
    and it has helped me out loads. I’m hoping to give
    a contribution & help other customers like its helped me.
    Great job.

  4. Superb blog! Do you have any helpful hints for aspiring writers?
    I’m planning to start my own blog soon but I’m a little lost on everything.
    Would you propose starting with a free platform like
    Wordpress or go for a paid option? There are so many choices out there that I’m totally
    confused .. Any ideas? Cheers!

    Take a look at my site – https://slotpulsa188.xyz

  5. I loved as much as you’ll receive carried out right here.

    The sketch is attractive, your authored subject matter stylish.
    nonetheless, you command get bought an nervousness
    over that you wish be delivering the following.
    unwell unquestionably come further formerly again since exactly
    the same nearly a lot often inside case you shield
    this increase.

  6. You can definitely see your enthusiasm within the work you write.
    The sector hopes for even more passionate writers like you who are not afraid to mention how they believe.

    All the time go after your heart.

  7. I’m extremely impressed with your writing skills and also with the layout on your blog.
    Is this a paid theme or did you modify it
    yourself? Anyway keep up the nice quality writing, it is rare to see a nice blog like this one today.

  8. Appreciating the time and effort you put into your blog and in depth information you offer.
    It’s great to come across a blog every once in a while that isn’t the same unwanted rehashed material.
    Fantastic read! I’ve bookmarked your site and I’m including your RSS feeds
    to my Google account.

  9. Hello i am kavin, its my first time to commenting anyplace, when i read this paragraph i
    thought i could also make comment due to this sensible post.

  10. Wow that was strange. I just wrote an incredibly long comment but after I
    clicked submit my comment didn’t appear. Grrrr…
    well I’m not writing all that over again. Anyways, just wanted to say superb blog!

  11. I feel this is among the most significant information for me.
    And i’m happy reading your article. However want to commentary on some basic
    issues, The web site style is wonderful,
    the articles is in reality nice : D. Good job, cheers

  12. Everyone loves what you guys are up too. This type of clever work and exposure!
    Keep up the amazing works guys I’ve added you guys to my own blogroll.

  13. I truly love your blog.. Very nice colors & theme. Did you build this site yourself?
    Please reply back as I’m attempting to create my own blog and would love to learn where you got
    this from or just what the theme is called.
    Appreciate it!

  14. An intriguing discussion is worth comment. I do think that
    you should write more on this subject, it may not be a taboo matter but typically people don’t discuss such issues.
    To the next! Kind regards!!

  15. I’ve been browsing online more than 2 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 web will be much more useful than ever before.

  16. When I originally commented I clicked the “Notify me when new comments are added” checkbox and now each time a comment is added I get several emails with the same comment.
    Is there any way you can remove me from that service?
    Bless you!

  17. I have been surfing on-line more than three hours these days, yet I by no means
    found any interesting article like yours.
    It is lovely price enough for me. In my opinion, if all site owners and bloggers made just right content material as you probably did, the internet shall be a lot more useful than ever before.

  18. Everything posted was actually very reasonable. However,
    what about this? suppose you added a little information? I ain’t saying your content isn’t good,
    but suppose you added a title that makes people want more?
    I mean Contoh Soal Pemrograman – Pola Segitiga Siku-siku – Umar faisol is a little plain. You might glance at
    Yahoo’s front page and see how they write post headlines to get
    viewers to click. You might add a related
    video or a related pic or two to get people excited about everything’ve written. Just my opinion, it would bring
    your blog a little livelier.

  19. My partner and I stumbled over here different
    web page and thought I should check things out.
    I like what I see so i am just following you. Look forward to checking
    out your web page repeatedly.

  20. What’s Taking place i am new to this, I stumbled upon this I’ve
    found It absolutely helpful and it has helped me out loads.
    I’m hoping to contribute & assist other customers like its helped me.
    Good job.

Comments are closed.