Skip to content

Latest commit

 

History

History
34 lines (27 loc) · 693 Bytes

README.md

File metadata and controls

34 lines (27 loc) · 693 Bytes

#

social_network

#

User Class

#

Graphic-User Interface

#

Comments

# Instanciates a user with a given number of informations # Inherits from classes: # People # Page Admin # Group Admin # Blocked User for 30 days

class generic_user:

	def __init__(self, name, age, occupation, ..., ..., ...):

		#public variables
		self.name = name
		...

		#protected variables
		self._age = age
		...

		#private variables
		self.__occupation = occupation
		...

	#modify any solicited settings 
	def set_settings(self):
		pass

	#responsible for get the current settings status
	def get_settings(self):
		pass