
질문 리스트 How is memory managed in Python? What is namespace in Python? What is PYTHONPATH? What are python modules? Name some commonly used built-in modules in Python? What are local variables and global variables in Python? 1. How is memory managed in Python? 파이썬은 메모리를 자동으로 관리 해준다. (그래서 실질적으로 개발자가 메모리 관리를 할 필요는 없다.) 하지만 Python은 모든 것을 객체(object)로 관리한다. 예시) x = 10 print(type(x)) >> C언어에서는 int x = 1..