adivina el numero


/ Published in: Python
Save to your folder(s)



Copy this code and paste it in your HTML
  1. #juego de adivinar un numero
  2. import random
  3.  
  4. intentos=0
  5.  
  6. print"escribe tu nombre para jugar"
  7. minombre = raw_input()
  8.  
  9. secreto = random.randint(1,20)
  10. print minombre ,", estoy pensando un numero entre el 1 y 20."
  11.  
  12. while intentos < 6:
  13. print "adivinalo" #tab antes de print
  14. numero_jugador = raw_input()
  15. numero_jugador = int(numero_jugador)
  16.  
  17. intentos = intentos+1
  18.  
  19. if numero_jugador < secreto:
  20. print"tu numero es menor que el numero secreto"
  21. if numero_jugador > secreto:
  22. print "tu numero es mayor que el numero secreto"
  23. if numero_jugador == secreto:
  24. break
  25. if numero_jugador== secreto:
  26. intentos == str(intentos)
  27. print "correcto",minombre,"has adivinado mi numero en",intentos,"intentos"
  28.  
  29. if numero_jugador != secreto:
  30. secreto = str(secreto)
  31. print "has perdido!el numero era",secreto

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.