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’m impressed, I have to admit. Seldom do I come across a blog that’s equally
    educative and interesting, and without a doubt, you have hit the nail on the
    head. The issue is something which not enough people
    are speaking intelligently about. I’m very happy that I stumbled across this in my
    search for something relating to this.

  2. This is very fascinating, You’re an excessively professional blogger.
    I have joined your feed and look ahead to in search of more of your wonderful post.
    Additionally, I’ve shared your web site in my social
    networks

  3. Excellent blog! Do you have any helpful hints for aspiring writers?
    I’m hoping to start my own blog soon but I’m a little lost on everything.
    Would you suggest 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? Kudos!

  4. Great beat ! I wish to apprentice while you amend your site, how could i subscribe for a blog web site?
    The account helped me a applicable deal. I had been tiny bit familiar of
    this your broadcast offered vivid clear idea

  5. Hi, I do think this is an excellent web site. I stumbledupon it 😉
    I am going to revisit once again since I book-marked it.
    Money and freedom is the greatest way to change, may you be rich and continue to
    help others.

  6. I don’t even know the way I stopped up here, however I believed this post
    was good. I don’t realize who you are but definitely you are
    going to a famous blogger when you aren’t already.
    Cheers!

  7. Hello there! Do you use Twitter? I’d like to follow you if that would be okay.
    I’m definitely enjoying your blog and look forward to new posts.

  8. intriguing review. Additionally visit definitely the site which can be played out judi slot online.
    Fantastic site has received standing out of slot pulsa video games contenders in Indonesia.

    Presently there will be a lot of lovely promos within event a person join today.

  9. Hi there! 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.

  10. I think everything published was actually very reasonable.

    However, what about this? suppose you composed a catchier post title?
    I am not suggesting your information is not solid, but suppose you added something that
    grabbed people’s attention? I mean Contoh Soal Pemrograman –
    Pola Segitiga Siku-siku – Umar faisol is kinda vanilla.
    You should glance at Yahoo’s home page and note how they create news headlines to get people to click.
    You might add a video or a related pic or
    two to get people interested about what you’ve written. Just my opinion, it would make your blog a little
    bit more interesting.

  11. I’ve been browsing online greater than three hours today,
    yet I never found any attention-grabbing article like yours.
    It is lovely value sufficient for me. In my view, if all
    site owners and bloggers made excellent content as
    you probably did, the web will be much more helpful than ever before.

  12. Have you ever considered about including a little bit more than just your articles?
    I mean, what you say is fundamental and all. However imagine if you added some great photos or video clips to give your posts more, “pop”!
    Your content is excellent but with images and videos, this site
    could undeniably be one of the most beneficial
    in its niche. Very good blog!

  13. I think that everything wrote made a ton of sense.
    But, think about this, suppose you added a little content?
    I ain’t suggesting your content is not good, but suppose you added something that makes people desire more?
    I mean Contoh Soal Pemrograman – Pola
    Segitiga Siku-siku – Umar faisol is kinda boring.
    You might peek at Yahoo’s home page and watch how they create post headlines to get
    viewers to open the links. You might add a video or a picture or two to grab readers excited about everything’ve written. In my opinion, it would bring your posts
    a little livelier.

  14. Good blog you have got here.. It’s hard to find high-quality writing like yours nowadays.
    I seriously appreciate people like you! Take care!!

  15. If some one wants expert view concerning running a blog after that i suggest him/her to
    pay a visit this webpage, Keep up the fastidious
    job.

  16. It’s a shame you don’t have a donate button! I’d most certainly donate to
    this superb blog! I suppose for now i’ll settle for bookmarking and adding your RSS feed to my Google account.
    I look forward to brand new updates and will talk about this blog with my Facebook group.
    Chat soon!

  17. 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 shakiness 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.

  18. I have read so many articles regarding the blogger lovers
    however this paragraph is truly a nice piece of writing,
    keep it up.

  19. Hi! This is my first visit to your blog! We are a team of volunteers and starting a new project in a community in the same niche.
    Your blog provided us beneficial information to work on. You have done a
    extraordinary job!

Comments are closed.