Facebook
From Aqua Flamingo, 1 Year ago, written in Python.
Embed
Download Paste or View Raw
Hits: 92
  1. class User:
  2.    
  3.     def first_name(self):
  4.         self.first_name
  5.     def last_name(self):
  6.         self.last_name
  7.     def age(self):
  8.         self.age
  9.     def gender(self):
  10.         self.gender
  11.     def city(self):newnmewmnew
  12.         self.city
  13.     def country(self):
  14.         self.country
  15.     def is_married(self):
  16.         self.is_married
  17.        
  18.     def display_all(self):
  19.         return
  20.  
  21. my_info = User()
  22. my_info.display_all()        
  23.