-from mymodule import person1 What is the correct syntax of importing only the person1 dictionary of the "mymodule" module? - class Person: def __init__(self, name, age): self.name = name self.age = age - class Student(Person) : Person 타입의 객체를 받는? 상속? Student 클래스 - import mymodule print(dir(mymodule) def my_function(*kids): print("The youngest child is " + kids[2]) >> String ... 같은 느낌? **kid .. ..