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. all the time i used to read smaller content that also
    clear their motive, and that is also happening with this piece of writing which I am reading here.

  2. Its like you learn my mind! You appear to know a lot approximately this, such as you wrote the e-book in it or something.

    I feel that you just can do with some % to pressure the message house a bit,
    but other than that, this is great blog. A great read.
    I’ll certainly be back.

  3. I’ve been exploring for a little for any high-quality articles or
    weblog posts in this sort of house . Exploring in Yahoo I
    finally stumbled upon this site. Reading this information So
    i’m happy to show that I have an incredibly excellent uncanny feeling I came upon exactly what I needed.

    I most no doubt will make certain to do not omit this web site and give it a glance on a constant basis.

  4. Hi, I do think this is an excellent web site. I stumbledupon it 😉 I may
    revisit yet again since I book marked it. Money and freedom is the best way to change, may you be rich and continue to help
    other people.

  5. Its like you read my mind! You seem to understand a lot approximately this, like you wrote the
    e book in it or something. I believe that you can do with a few
    p.c. to force the message house a little bit, but other
    than that, that is great blog. A fantastic read. I will
    certainly be back.

  6. Hi there, after reading this amazing paragraph i am as well glad to share my experience here with friends.

  7. Quality posts is the crucial to interest the users to pay a quick visit the web site, that’s what this web page is providing.

  8. hello!,I like your writing very a lot! proportion we communicate extra about your post on AOL?
    I need an expert on this area to solve my problem.
    May be that is you! Having a look ahead to look you.

  9. Its like you read my mind! You seem to know
    a lot about this, like you wrote the book in it or something.
    I think that you could do with a few pics to drive
    the message home a bit, but instead of that, this is fantastic blog.

    A great read. I’ll certainly be back.

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

  11. Hi, I do believe this is an excellent blog. I stumbledupon it 😉 I may return once again since
    I saved as a favorite it. Money and freedom is the best way to change, may you
    be rich and continue to guide others.

  12. Greetings from Florida! I’m bored at work so I decided to browse your site on my iphone during lunch break.
    I enjoy the info you provide here and can’t wait to take a look when I get home.
    I’m shocked at how fast your blog loaded on my cell phone ..
    I’m not even using WIFI, just 3G .. Anyhow,
    fantastic blog!

  13. I just like the valuable info you provide on your articles.
    I will bookmark your weblog and take a look at once more here
    regularly. I am reasonably sure I will be informed
    many new stuff right here! Good luck for the next!

  14. I’ve read several excellent stuff here. Definitely value bookmarking for
    revisiting. I wonder how so much effort you put to create this kind of wonderful informative web site.

  15. Hi there! Do you know if they make any plugins to assist
    with Search Engine Optimization? 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!

  16. Hola! I’ve been reading your blog for some time
    now and finally got the bravery to go ahead and give you a shout out from Kingwood Tx!
    Just wanted to tell you keep up the fantastic job!

  17. I do not know whether it’s just me or if everyone else encountering problems with your blog.
    It looks like some of the written text in your
    content are running off the screen. Can somebody else please comment and
    let me know if this is happening to them too? This
    could be a problem with my web browser because I’ve had this happen previously.
    Appreciate it

Comments are closed.