Update, according to comments

This commit is contained in:
Danila Malyutin
2016-11-12 18:46:25 +03:00
parent 009a4e67b6
commit 00dc775daf
2 changed files with 21 additions and 2 deletions

View File

@@ -3372,12 +3372,12 @@ Python:
color: "#3572A5"
extensions:
- ".py"
- ".py3"
- ".bzl"
- ".cgi"
- ".fcgi"
- ".gyp"
- ".lmi"
- ".py3"
- ".pyde"
- ".pyp"
- ".pyt"

View File

@@ -1 +1,20 @@
print("Hello, world!")
import random
guesses = 0
number = random.randint(1, 20)
print("Guess the number between 1 and 20! You have 6 tries.")
while guesses < 6:
guess = int(input("Is it... "))
if guess == number:
print("Hooray! You guessed it right!")
break
elif guess < number:
print("It's bigger...")
elif guess > number:
print("It's not so big.")
guesses += 1
if guesses == 6:
print("You've ran out of tries.")