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

Python에서 목록 업데이트

<시간/>

할당 연산자의 왼쪽에 슬라이스를 제공하여 목록의 단일 또는 여러 요소를 업데이트할 수 있으며 append() 메서드를 사용하여 목록의 요소에 추가할 수 있습니다.

#!/usr/bin/python
list = ['physics', 'chemistry', 1997, 2000];
print "Value available at index 2 : "
print list[2]
list[2] = 2001;
print "New value available at index 2 : "
print list[2]

참고 - append() 메서드는 다음 섹션에서 설명합니다.

출력

위의 코드가 실행되면 다음과 같은 결과가 생성됩니다 -

Value available at index 2 :
1997
New value available at index 2 :
2001