```Python print(type(None)) 출력: <class: 'NoneType'> ``` 위와 같이 ```None```의 자료형은 NoneType이라고 하는데, ```int```, ```float```, ```str```과는 다르게 ```NoneType```은 어째서 해당 자료형을 의미하는 것과 형변환 함수는 없나요? 예시) ```Python Nonetype 출력: NameError ```