리스트도 요소를 변경할 수 있다!

 

a=[1,2,3,4,5]
print(a)

a[2]=30  #인덱스 수정
print(a)

del a[2]  #인덱스 삭제
print(a)

del a[1:3]  #범위로 삭제(1~2)
print(a)

a.remove(1)  #값을 찾아서 삭제. 없는 값이면 에러
             #만약 a.remove(10)  #10은 없는 값이라 에러
print(a)

out)

[1, 2, 3, 4, 5]
[1, 2, 30, 4, 5]
[1, 2, 4, 5]
[1, 5]
[5]
a=[1,2,3,4,5]
a.remove(10)  #10은 없는 값이라 에러
print(a)

out)

ValueError: list.remove(x): x not in list

 

 


b=[2,7,4,5,3]
list.sort(b)    #정렬
print(b)

out)

[2, 3, 4, 5, 7]

 

 

'파이썬이 제일 쉽다면서요' 카테고리의 다른 글

python #연습문제  (0) 2021.06.02
python #연습문제  (0) 2021.06.02
python #list  (0) 2021.06.02
python #피카츄게임?  (0) 2021.06.01
python #연습문제  (0) 2021.06.01

+ Recent posts