Skip to content

rozbr96/social_network

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 

Repository files navigation

#

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

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published