import os
import platform
def limpar():
if (platform.system() == 'Windows'):
os.system('cls')
else:
os.system('clear')
def jogar():
print('*****Jogo Adivinhe um Numero*****')
print('')
numero = int(input('Numero a ser adivinhado: '))
limpar()
while(1):
opcao = int(input('Chute: '))
if(opcao > numero):
print('Numero é menor')
elif(opcao < numero):
print('Numero é maior')
elif( opcao == numero):
print(f'Acertou Mizzeeráviii !! O numero era {numero} mesmo !' )
op = str(input('Deseja Jogar novamente ? (Sim)/(Não) '))
print('')
if(op == 'Sim' or op == 'sim' or op == 's' or op == 'S'):
jogar()
else:
break
jogar()
-
Notifications
You must be signed in to change notification settings - Fork 0
wbsartori/adivinhar_numero
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
About
Jogo Adivinhe um número.
Resources
Stars
Watchers
Forks
Releases
No releases published
Packages 0
No packages published