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 don’t even know how I ended up here, but I thought this post was good.

    I do not know who you are but certainly you’re going to a
    famous blogger if you aren’t already 😉 Cheers!

  2. It is appropriate time to make a few plans for the longer term and it’s time to be
    happy. I have read this post and if I could I wish to recommend you few interesting things or tips.
    Maybe you could write subsequent articles referring to this article.

    I desire to read even more issues approximately it!

  3. Вилочный погрузчик, штабелер в наличии
    https://wlt.ru/pogruzchiki/luigong-cpcd30/

    Noblelift – штабелеры, электротележки китайского производства, одна из самых продаваемых марок;
    Вилочные погрузчики, которые также известны как автопогрузчики, чрезвычайно маневренны и, следовательно, обеспечивают быстрое перемещение и точное размещение как сырых, необработанных товаров, так и готовой продукции. Вилочные погрузчики — это, в основном, небольшие транспортные средства, но довольно грузоподъемные, которые предназначены для подъема, перемещения и размещения ящиков, материалов, поддонов и т. д. Они позволяют поднимать груз из одного положения и перемещать его в другое положение и размещать в указанной области.
    Основным направлением работы погрузчиков является именно транспортировка грузов на небольшие расстояния, именно поэтому в перечисленных ранее областях они используются чаще всего.

    __________________________________
    самидалисис

  4. Having read this I thought it was rather enlightening.
    I appreciate you finding the time and effort to put this information together.
    I once again find myself spending a significant amount
    of time both reading and commenting. But so what, it was still worth it!

    Here is my homepage – http://www.zilahy.info/

  5. Hi! Do you know if they make any plugins to assist
    with SEO? 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. Cheers!

  6. When some one searches for his vital thing,
    therefore he/she wishes to be available that in detail, so that thing is maintained over here.

  7. I loved as much as you will receive carried out right
    here. The sketch is attractive, your authored subject matter stylish.

    nonetheless, you command get bought an impatience over that you wish be delivering the
    following. unwell unquestionably come more formerly again as exactly the
    same nearly a lot often inside case you shield this increase.

  8. Good day! Do you know if they make any plugins to help with SEO?
    I’m trying to get my blog to rank for some targeted keywords
    but I’m not seeing very good gains. If you know of any please share.
    Cheers!

  9. You can certainly see your expertise within the work
    you write. The sector hopes for even more passionate writers like you who are not afraid to say how they believe.
    At all times follow your heart.

  10. I love reading personal blogs, Mommy blogs, etc. . . What is the best way to find these types of blogs online? The best method I have is just following favorites people have – going to one bloggers “favorites” then the next bloggers favorites, and so forth.. . I’ve tried Google Blogsearch but all that gives me is old news articles, etc. Nothing personal at all.. . How do you search for personal blogs?.

  11. Presumably the magazine doesn’t do deals with each source that it reproduces, so how does copyright law allow them to re-print editorial content that they don’t own without paying royalties?. . Also, can this law be applied internationally?.

  12. I want to be able to write entries and add pics. I do not mean something like myspace or facebook or anything like that. I mean an actual blog. .

Comments are closed.