Advertisement
teslariu

if

Nov 25th, 2021
878
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.66 KB | None | 0 0
  1. #!/usr/bin/env python
  2. # -*- coding: utf-8 -*-
  3. """
  4. Turing descubre la nocion de funcion computable (una funcion matematica)
  5. que puede ser calculada por una màquina automàtica
  6. Turing descubre que se necesitan 3 funciones lògicas para resolver
  7. cualquier funcion computable
  8. 1 condicional y 2 bucles
  9. En Python: condicional: if/else bucles: while y for
  10. """
  11. # usaremos el condicional if/else
  12.  
  13. # Script que pide la edad de una persona y responde si es mayor de edad
  14. edad = int(input("Ingrese su edad: "))
  15.  
  16. if edad >= 18:
  17.     print("Usted ya es mayor de edad")
  18.     print("Que suerte...")
  19. else:
  20.     print("Aun es menor de edad ...")
  21.     print("Que lastima")
  22. print("Chau")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement