Initial import

This commit is contained in:
Hans Otto Rasmussen 2020-07-06 14:45:28 +02:00
commit dce41cf8c7

25
main.py Normal file
View file

@ -0,0 +1,25 @@
import random
while True:
random.seed()
tal = random.randint(1, 100)
brute_get = 0
while True:
y = input("get et tal mellem 1 og 100: ")
x = int(y)
brute_get += 1
if x == tal:
print("tillyke du har vundet")
print(f"du brute {brute_get} get")
break
if tal > x:
print("talet er støre end det")
else:
print("talet er mindre end det")
y = input("Vil du spille igen?")
if y != "ja":
break