티스토리 뷰
반응형
List 사용법
Python Collections (Arrays)
There are four collection data types in the Python programming language:
- List is a collection which is ordered and changeable. Allows duplicate members.
- Tuple is a collection which is ordered and unchangeable. Allows duplicate members.
- Set is a collection which is unordered and unindexed. No duplicate members.
- Dictionary is a collection which is unordered, changeable and indexed. No duplicate members.
List 사용예 >
- thislist = ["apple", "banana", "cherry"]
- thislist.append("orange")
- thislist.remove("banana")
- len(thislist)
- if "apple" in thislist:
- for x in thislist:
다음과 같은 List 함수를 사용할수 있다.
자료출처 :
https://www.w3schools.com/python/python_lists.asp
끝.
댓글
반응형
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- 파이썬
- webhook
- 팀 소통
- python slack
- du 명령어
- 메시지 전송
- HOME/END
- Karabiner-Elements
- angular
- 장고
- 미밴드4
- df 명령어
- channel oauth
- win10
- 미밴드
- http 요청
- HOME key
- amaztools
- Python
- win7
- venv
- 프로젝트 생성
- cmd창
- python message
- cmd실행
- END key
- vscode
- 디스크 사용량
- django
- slack api
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
글 보관함