- 파이썬의 for 문의 형식은 fon in 만 제공됨. (for each , for, .. 같은거 없음)
for item in iterable: # iterable 반복가능개체.
반복대상구문
############## 예
myArr = [1,2,3,4,5,6]
for i in myArr:
print(i)
실행결과
1
2
3
4
5
6
##############
for i in range(0,3): #0부터 3개의미 즉, 0,1,2
print(i)
실행결과
0
1
2
첫등록 : 2019년 4월 21일
최종수정 :
본 글 단축주소 : https://igotit.tistory.com/2125
'지속가능티끌 > Python' 카테고리의 다른 글
Python. tuple (0) | 2019.04.21 |
---|---|
Python. matplotlib (0) | 2019.04.21 |
Visual Studio 2019. 파이썬 개발환경 구축 (0) | 2019.04.18 |
Python. ctypes. 파이썬에서 DLL 활용 (0) | 2019.04.11 |
PyCharm. 개요. 설치 (0) | 2019.04.08 |
댓글