728x90
A030
iList=['국어','영어','수학','사회','과학'] print(iList)
|
A031
iList=['국어','영어','수학','사회','과학'] print(iList[0])
print(iList[2])
|
A032
iList=['국어','영어','수학','사회','과학'] iList.append('도덕')
print(iList)
|
A033
kList=[] kList.append(10)
kList.append(7)
print(kList)
|
A034
iList=['국어','영어','수학','사회','과학'] kList=[30,50,55]
print(iList[2],"점수는",kList[1],"입니다.")
|
728x90
'■ 현재-ing > ㅡPython' 카테고리의 다른 글
Python 구글 Colaboratory #A050 print,기본연산자,del (0) | 2022.09.23 |
---|---|
Python 구글 Colaboratory #A040 : input 자료추가 (0) | 2022.09.02 |
Python 구글 Colaboratory #A020 : 내 파일 업로드 또는 구글드라이브 파일열기 (0) | 2022.08.30 |
Python 구글 Colaboratory #A010 : 기본 텍스트 코딩 및 코랩단축키 (0) | 2022.08.30 |
Python 구글 Colaboratory #A001 : 구글 드라이브에 설치 (0) | 2022.08.29 |