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.

48,220 thoughts on “Contoh Soal Pemrograman – Pola Segitiga Siku-siku

  1. Following the link from Balticbet.net and registering in Super Cat casino, you can get 60 free spins (freeways) in the game Gonzo’s Quest! PARADISE8 casino gives 58 Free spins on Ocean Treasure slot, the free spins automatically credited to your account when you sign up for real play! Just sign up a new account today to claim 58 free Spins, no deposit required. After you have spin you free spins you can take part of $10 Free Chip. Just go to the Cashier and claim $10 Free Home » SuperCat Casino Online The Casino is available for instant play from Desktop, Tablet and Mobile devices and is available in English, Russian, Polish, Turkish, Spanish and German. Play with ease and without worry as the Casino provides secure Firewalls and industry-leading SSL Encryption to keep you safe while playing. https://shilohanewbeginningapostolicministry.com/community/profile/demetriust08073/ Independent Sacramento Kings Coverage. By Fans, For Fans. Support Us On Patreon Popular Bitcoin casino platform Bet King paid out over 35 000 Bitcoin of winnings during 2015, and has many plans for 2016. The casino is equipped with powerful cameras that live stream the casino gaming session and present the whole scene most flawlessly to the computer screen of the players. Players can interact with the attractive dealers while gambling at the live tables and have a gala time at King Billy Casino. The live casino of King Billy features different variants of blackjack and roulette like European roulette. However, there are tons of other options, too, as mentioned below: One of the most promising applications of blockchain technology is casino gaming. However, so far, blockchain-based casino and betting applications haven’t been able to reach their full potential due to being built on unscalable networks.

Comments are closed.