-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.py
More file actions
24 lines (18 loc) · 681 Bytes
/
main.py
File metadata and controls
24 lines (18 loc) · 681 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
wellcome_massage = "Wellcome AizenChizuru Games"
bear_position = 2
# Header
print("|*************************************|")
print(f"|---- {wellcome_massage} ----|".upper())
print("|*************************************|")
# Content
nama_user = input("Masukan Nama Kamu: ")
print(f'''
Halo {nama_user}, Coba Perhatikan Goa Dibawah Ini"
|_| |_| |_| |_| |_|
'''.upper())
pilihan_user = int(input("Menurut Kamu Mana Beruang Itu Bersembunyi ? [1 / 2 / 3 / 4 / 5] : "))
print(f"Pilihan Kamu Adalah {pilihan_user}".upper())
if bear_position == bear_position:
print("selamat kamu menemukannya".upper())
else:
print("kamu kalah tidak menemukan beruang".upper())