0w0

[BASIC] 파이썬 한줄for문 본문

Coding/Python

[BASIC] 파이썬 한줄for문

0w0 2020. 11. 25. 17:14
728x90
반응형

 

# 한줄 for문

students=[1,2,3,4,5]
print(students)
print()

students=[i+100 for i in students]
print(students)
print()

students=["hi","xcv","qweqwe"]
students=[int(len(i)) for i in students]
print(students)
print()

students=["hi","xcv","qweqwe"]
students=[str(i.upper()) for i in students]
print(students)


# 출력형태
C:\Users\0w0\Anaconda3\envs\pytest\python.exe C:/Users/0w0/PycharmProjects/pytest/test.py
[1, 2, 3, 4, 5]

[101, 102, 103, 104, 105]

[2, 3, 6]

['HI', 'XCV', 'QWEQWE']

Process finished with exit code 0
728x90
반응형

'Coding > Python' 카테고리의 다른 글

[BASIC] 파이썬 함수의 전달값, 반환값  (0) 2020.12.05
[BASIC] 파이썬 함수(function)  (0) 2020.12.05
[BASIC] 파이썬 continue break  (0) 2020.11.25
[BASIC] 파이썬 while문  (0) 2020.11.25
[BASIC] 파이썬 for문  (0) 2020.11.24
Comments