Python/python 기초

range로 반복문 활용하기

DS지니 2021. 5. 10. 04:40
728x90
반응형
# 반복문의 다양한 활용
list_ = [1,10,100,1000,10000]

def foo(list_):
  print(list_)
# 1. range, len 사용
for i in range(len(list_)):
    foo(list_[i])

>>  1

>> 10

>> 100

>> 1000

>> 10000

# 2. elemnet
for element in list_:
    foo(element)

>> 1

>> 10

>> 100

>> 1000

>> 10000

 

for i in range(len(list_)):
  print(i)

>> 0

>> 1

>> 2

>> 3

>> 4

 

728x90
반응형

'Python > python 기초' 카테고리의 다른 글

요소 추가 append(), extend(), insert()  (0) 2021.05.13
break & continue  (0) 2021.05.10
경계 검사 (bounds checking)  (0) 2021.05.09
(메소드) rjust, zfill, split, startswith, endswith, replace, copy  (0) 2021.05.09
map 내장함수  (0) 2021.05.09