반응형
1. 문자열 배열 선언
>>> movies =["The Holy Grail",
"The Life of Brian",
"The Meaning of Life"]
>>> movies
['The Holy Grail', 'The Life of Brian', 'The Meaning of Life']
"" 로 변환로 문자열 변환
, 콤마로 분리
대괄호로 둘러싸기
대입 연산자로 대입 하기
2. 리스트 배열 읽기
pirnt(movies[0])
The Holy Grial 나타남
3. 리스트 배열 추가
>>> movies.append("GOGO")
>>> print(movies)
['The Holy Grail', 'The Life of Brian', 'The Meaning of Life', 'GOGO']
>>> print(len(movies))
>>> movies.insert(2,"two")
>>> print(len(movies))
5
>>> print(movies)
['The Holy Grail', 'The Life of Brian', 'two', 'The Meaning of Life', 'GOGO']
4
반응형