mirror of
https://github.com/KevinMidboe/linguist.git
synced 2025-12-08 20:38:47 +00:00
Merge pull request #3325 from danilaml/py3-ext
Add py3 to Python's extensions list
This commit is contained in:
@@ -3377,6 +3377,7 @@ Python:
|
|||||||
- ".fcgi"
|
- ".fcgi"
|
||||||
- ".gyp"
|
- ".gyp"
|
||||||
- ".lmi"
|
- ".lmi"
|
||||||
|
- ".py3"
|
||||||
- ".pyde"
|
- ".pyde"
|
||||||
- ".pyp"
|
- ".pyp"
|
||||||
- ".pyt"
|
- ".pyt"
|
||||||
|
|||||||
20
samples/Python/py3.py3
Normal file
20
samples/Python/py3.py3
Normal file
@@ -0,0 +1,20 @@
|
|||||||
|
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.")
|
||||||
Reference in New Issue
Block a user