Computer >> 컴퓨터 >  >> 프로그램 작성 >> Python

Python에서 튜플 요소 삭제

<시간/>

개별 튜플 요소를 제거하는 것은 불가능합니다. 물론 원하지 않는 요소를 버리고 다른 튜플을 조합하는 데 아무런 문제가 없습니다.

전체 튜플을 명시적으로 제거하려면 del 문을 사용하세요.

예시

#!/usr/bin/python
tup = ('physics', 'chemistry', 1997, 2000);
print tup;
del tup;
print "After deleting tup : ";
print tup;

출력

이것은 다음과 같은 결과를 생성합니다. 예외가 발생했습니다. 이는 del tup 튜플이 더 이상 존재하지 않기 때문입니다 -

('physics', 'chemistry', 1997, 2000)
After deleting tup :
Traceback (most recent call last):
File "test.py", line 9, in <module>
print tup;
NameError: name 'tup' is not defined