Skip to content

Instantly share code, notes, and snippets.

@ZhouYang1993
Last active May 19, 2020 15:50
Show Gist options
  • Save ZhouYang1993/ebf245c48ec537e92dcfddcce6ba4026 to your computer and use it in GitHub Desktop.
Save ZhouYang1993/ebf245c48ec537e92dcfddcce6ba4026 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
@classmethod
def get_from_string(cls, name_string: str):
first_name, last_name = name_string.split()
return Student(first_name, last_name)
@staticmethod
def suitable_age(age):
return 6 <= age <= 30
print(Student.suitable_age(99)) # False
print(Student.suitable_age(27)) # True
print(Student('yang', 'zhou').suitable_age(27)) # True
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment