심사문제 35.6 질문 있습니다.
, 윤 인구님이 작성@classmethod
def from_string(cls, time_string):
hour, minute, second = map(int, time_string.split(':')
time = cls(hour, minute, second)
return time
@staticmethod
def is_time_valid(time_string):
hour, minute, second = map(int, time_string.split(':')
return hour <= 24 and minute <= 59 and second <= 60
이렇게 코드를 만들어 봤는데
time = cls(hour, minute, second)에서 구문오류가 나고 있습니다.
해설을 찬찬히 읽어봐도 왜 오류가 일어나는지 모르겠습니다.