Adivina el número secreto


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



Copy this code and paste it in your HTML
  1. # Juego para adivinar el numero.
  2. # Fran Lucena
  3.  
  4. import random
  5.  
  6. intentos = 0
  7.  
  8. print "Hola! Escribe tu nombre"
  9.  
  10. #El programa te pide que escribas tu nombre y lo guarda en miNombre
  11. miNombre = raw_input()
  12.  
  13. secreto = random.randint(1, 20)
  14.  
  15. print miNombre," , Estoy pensando un numero entre 1 y 20."
  16.  
  17. while intentos < 6:
  18. print 'Adivinalo !' # Usa tabulador antes de print.
  19. #numero_jugador = int (input())
  20. numero_jugador = raw_input()
  21. numero_jugador = int(numero_jugador)
  22.  
  23. intentos = intentos + 1 # intentos += 1
  24.  
  25. if numero_jugador < secreto:
  26. print "Tu numero es menor que el secreto." # Dos veces tabulador antes de print.
  27. if numero_jugador > secreto:
  28. print "Tu numero es mayor que el secreto."
  29. if numero_jugador == secreto:
  30. break
  31.  
  32. if numero_jugador == secreto:
  33. print "Correcto, ", miNombre, "! has adivinado mi numero en ", intentos , " intentos!"
  34.  
  35. if numero_jugador != secreto:
  36. print "Has Perdido! El numero que yo he pensado era ", secreto

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.