[PYTHON/COMMON] del 함수 : 변수 제거하기 ■ del 함수를 사용해 변수를 제거하는 방법을 보여준다. ▶ 예제 코드 (PY) 예제 코드 (PY) Python a = 3 del(a) 12345 a = 3 del(a) Advertisements