패키지 모듈
# from animal import dog
# from animal import cat
# d = dog.Dog()
# d.hi()
# c = cat.Cat()
# c.hi()
from animal import *
d = Dog()
c = Cat()
d.hi()
c.hi()
반응형
패키지 모듈
# from animal import dog
# from animal import cat
# d = dog.Dog()
# d.hi()
# c = cat.Cat()
# c.hi()
from animal import *
d = Dog()
c = Cat()
d.hi()
c.hi()