리스트에서 원하는 위치의 요소 값을 변경하고자 할 경우에는 [요소] = 값 형태로 변경할 수 있습니다.
변경하고자 하는 값이 숫자,문자,리스트 등 자신이 원하는 형태로 변경이 가능합니다.
변경하고자 하는 값이 숫자,문자,리스트 등 자신이 원하는 형태로 변경이 가능합니다.
python 코드
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
testList
=[
"a"
,
"b"
,
"c"
];
testList
[
2
]=
"d"
;
print
(
testList
);
//결과
['a','b','d']
testList
[
1
]=
10
;
//결과
['a',10,'d']
testList
[
1
]=[
"key"
,
"board"
];
//결과
['a',['key','board'],'d']
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
testList
=[
"a"
,
"b"
,
"c"
,
"d"
,
"e"
];
del testList
[
0
];
print
(
testList
);
//결과
['b','c','d','e']
del testList
[
2
:];
print
(
testList
);
//결과
['b','c']
del testList
print
(
testList
);
//결과
NameError : name 'testList' is not defined
|
[python] 리스트에서 사용될 때 사용법 - +(더함),*(반복),len(개수) (0) | 2022.06.22 |
---|---|
[python] list 인덱싱과 슬라이싱 - 요소 값 가져오기 (0) | 2022.06.21 |
[python] upper,lower,replace,split - 대소문자 , 바꾸기 , 나누기 (0) | 2022.06.17 |
[python] count,find,index,join - 개수 , 위치 , 문자 삽입 (0) | 2022.06.15 |
[python] % , format , f문자 - 문자열 포매팅을 선언 (0) | 2022.06.14 |