def showYourNameAndAge(name, age = 20): # 기본 값을 지정한 매개변수는 단순 매개변수 다음에 위치해야 한다 print(f'{name} 님 {age} 세')showYourNameAndAge('hailey', 20)showYourNameAndAge('hailey')class Student: count = 0 # static def __init__(self, name): self.name = name Student.count += 1s1 = Student('h1')s2 = Student('h2')s3 = Student('h3')print(Student.count)def reverse_str(str): return str[::-1]def reverse_str(..