변수 선언
a = 1
b = [0,1,2]
c = {'name':'홍길동', 'age': 20}
고유 주소 값 확인 id()
a = 1
a = b
print(id(a)) # 4483457216
print(id(b)) # 4483457216
주석 ( # )
# 주석1
a = 1 # 주석 2
조건문 ( if, elif, else )
a = 1
b = 2
c = 2
if a == b:
print('a == b')
else:
print('a != b')
if b == c:
print('b == c')
else:
print('b != c')
결과
a != b
b == c
반복문 ( for, while )
List
a = ['one', 'two', 'three']
for i in a:
print(i)
결과
one
two
three
Dictionary items()
person = {
'name': '김개똥',
'age': 25,
'height': 175,
'weight': 65,
}
for key, value in person.items():
print(key, value)
결과
name 김개똥
age 25
height 175
weight 65
While
start = 0
max = 25
interval = 5
while start < max:
start += interval
print(start)
print(f'start: {start}')
결과
5
10
15
20
25
start: 25
리스트 컴프리헨션 ( List Comprehension )
l = [1, 2, 3, 4, 5]
nl = [x for x in l if x > 3]
print(nl)
결과
[4, 5]
728x90
'Programing Language > Python' 카테고리의 다른 글
[Python] IndentationError: unindent does not match any outer indentation level (0) | 2023.04.26 |
---|---|
[Python] 문자열 관련 (0) | 2023.03.15 |
[Python] 문자열 존재여부 (0) | 2023.03.08 |
[Python] default value if none (0) | 2023.03.06 |
[Python] xlsxwriter 관련 (0) | 2023.02.25 |
댓글