Advertisement
Guest User

Untitled

a guest
Jul 17th, 2019
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. class Persona():
  2. def __init__(self, edad, direccion):
  3. self.edad=edad
  4. self.direccion=direccion
  5. def estado(self):
  6. print("Edad: ", self.edad, " Direccion= ", self.direccion)
  7. i="no"
  8. while i=="no":
  9. p1=input("INTRODUZCA NOMBRE: ") #i tried naming Abelino. Doesn´t work
  10. e1=input("INTRODUZCA EDAD: ")
  11. d1=input("INTRODUZCA DIRECCIÓN: ")
  12. p1=Persona(e1,d1)
  13. p1.estado()
  14. i=input("")
  15. print(Abelino.estado)####
  16. #print("OTHER NAMES.ESTADO")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement