[Short description about purpose of code]


insert these dividers using /div

do not type anything that is between hashtags

use this space to justify any imported libraries

Imported Libraries

you can put words into these in-line code containers by highlighting and pressing ctrl + e


#\ code should follow principles of OOP. the following sections should be pastes of function code, class structure, and main loop protocols. the order in which these appear should be class > global function > main loop or example code (if applicable). if a class inherits from another class, denote its super class using extends {superclass} notation below the header, then link that to the appropriate page where the superclass is defined. if the class does not extend a super class, simply write null for {superclass}. if a function is a member of a class, denote its class by making it Header 3 underneath the respectable class. in the code block, describe the parameters just above the definition of the function. below the code, provide a mathematical basis (if necessary), and a more in-depth description of the code’s purpose. #


Class_One

*extends Class_One_Superclass*

Summarily describe class’s purpose.

class Class_One():
	def __init__(self, [type_1] member_1, [type_2] member_2, ...):
		self.member_1 = member_1 # purpose of member_1
		self.member_2 = member_2 # purpose of member_2
		# ... 

Class_One.function_1()

Summarily describe function.