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. When some one searches for his essential thing, so he/she wants to be available that in detail, therefore that
    thing is maintained over here.

  2. Its like you read my mind! You seem to know so much about this,
    like you wrote the book in it or something. I think that
    you could do with some pics to drive the message home a bit,
    but other than that, this is great blog. A great read.
    I’ll definitely be back.

  3. Someone necessarily help to make seriously articles I might state.
    That is the first time I frequented your web page and so far?
    I amazed with the research you made to make this actual publish
    extraordinary. Excellent task!

  4. I do not even know how I ended up here, but I thought this post was good.
    I don’t know who you are but certainly you are going to a
    famous blogger if you are not already 😉 Cheers!

  5. Hi there, i read your blog from time to time and i own a similar one and i was just curious if
    you get a lot of spam responses? If so how do you protect against it, any plugin or anything you can recommend?
    I get so much lately it’s driving me insane so
    any support is very much appreciated.

  6. Howdy! I could have sworn I’ve visited this site
    before but after browsing through a few of the posts I realized it’s new to me.

    Anyways, I’m certainly delighted I discovered it and
    I’ll be book-marking it and checking back
    frequently!

  7. Great beat ! I wish to apprentice while you amend your web
    site, how can i subscribe for a blog site? The account helped
    me a acceptable deal. I had been a little bit acquainted of this your broadcast offered bright clear idea

  8. I’m amazed, I must say. Seldom do I come across a blog that’s both equally educative and entertaining,
    and let me tell you, you have hit the nail on the head.
    The problem is something that not enough people are speaking intelligently about.

    I’m very happy that I stumbled across this during my search for something concerning this.

  9. I like the valuable information you provide in your articles.
    I’ll bookmark your weblog and check again here frequently.
    I am quite sure I will learn lots of new stuff right here!
    Best of luck for the next!

  10. you’re in point of fact a good webmaster. The site loading velocity is amazing.
    It kind of feels that you are doing any unique trick.
    Furthermore, The contents are masterwork. you’ve done a wonderful process on this topic!

  11. Hmm is anyone else experiencing problems with the pictures on this blog loading?
    I’m trying to determine if its a problem on my end or if it’s the blog.
    Any responses would be greatly appreciated.

    Also visit my homepage … judi pulsa

  12. excellent post, very informative. I ponder why the other experts
    of this sector don’t understand this. You must continue your writing.
    I’m confident, you’ve a great readers’ base already!

  13. Hi, i read your blog occasionally and i
    own a similar one and i was just curious if you get a lot of spam feedback?
    If so how do you protect against it, any plugin or anything you can advise?
    I get so much lately it’s driving me insane so any assistance is very much appreciated.

    my blog :: http://www.agensportsbook.net

  14. Heya i am for the first time here. I found this board and I find It truly useful & it helped me out much.
    I hope to give something back and help others like you aided me.

  15. Its like you learn my thoughts! You seem to grasp so much about this, like you wrote the ebook in it or something.
    I think that you just could do with some percent to pressure the message house a little bit,
    but instead of that, this is wonderful blog. An excellent read.

    I’ll certainly be back.

    my blog :: deposit pulsa

  16. Hi there! I could have sworn I’ve been to this web site before but after
    browsing through some of the posts I realized it’s
    new to me. Anyhow, I’m certainly happy I found it and I’ll be bookmarking it and checking back often!

  17. Hey there this is somewhat of off topic but I was wondering 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 advice from someone with experience.
    Any help would be enormously appreciated!

  18. Тяговая АКБ цена
    https://www.taz-bb.ru/
    Аккумуляторные батареи напряжением 48 В (48V) — от 89 900 рублей;
    Отправьте заявку прямо с сайта или позвоните, чтобы получить точные цены на тяговые аккумуляторы для погрузчиков!

    _____________________________
    самивабистуризм

  19. 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 further formerly again as exactly the same nearly very often inside case
    you shield this increase.

  20. I like the valuable information you provide on your articles.
    I’ll bookmark your weblog and take a look at once more right here regularly.
    I am fairly sure I’ll learn plenty of new stuff right right here!
    Best of luck for the following!

  21. obviously like your web-site however you have to take a
    look at the spelling on quite a few of your posts.
    Many of them are rife with spelling issues and I to find it very bothersome to tell the truth however I will surely come back again.

Comments are closed.