# type 함수로 자료형 타입 확인 print(type(3)) print(type(3.0)) print(type("3")) print(type("True")) print(type(True)) def hello(): print("Hello World!") print(type(hello)) # function 함수 print(type(print)) # builtin_function_or_method 파이선에 내장된 함수