-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpoe_randomer.py
More file actions
37 lines (27 loc) · 824 Bytes
/
Copy pathpoe_randomer.py
File metadata and controls
37 lines (27 loc) · 824 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
25
26
27
28
29
30
31
32
33
34
35
36
37
import random
import os
build_liste = list()
menu = """
1) build ekle
2) görüntüle
3) çekilişi başlat
"""
while True:
print(menu)
os.system("cls")
secim = input("Seçimi yap:")
if secim == "1":
add_build = input("Eklenecek buildi gir: ")
build_liste.append(add_build)
print("çıkmak için enter'a bas")
input()
elif secim == "2":
print(build_liste)
elif secim == "3":
print("""
Çuzi : {} veya {}
Duzi : {} veya {}
Ozi : {} veya {}
""".format(random.choice(build_liste),random.choice(build_liste),random.choice(build_liste),random.choice(build_liste),random.choice(build_liste),random.choice(build_liste)))
else:
print("hatalı giriş")