python basic class code example
Example 1: class and object in python
#NOTES
class PartyAnimal:
def Party():
#blahblah
an=PartyAnimal()
an.Party()# this is same as 'PartyAnimal.Party(an)'
Example 2: class methods in python
@classmethod
def func(cls, args...)