Skip to content

Instantly share code, notes, and snippets.

@ZhouYang1993
Last active May 19, 2020 14:00
Show Gist options
  • Save ZhouYang1993/75670a2cc7702cd4641b3150a646b6d1 to your computer and use it in GitHub Desktop.
Save ZhouYang1993/75670a2cc7702cd4641b3150a646b6d1 to your computer and use it in GitHub Desktop.
Class Method and Static Method in Python
class Student:
def __init__(self, first_name, last_name):
self.first_name = first_name
self.last_name = last_name
self.nickname = None
def set_nickname(self, name):
self.nickname = name
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment