number = number + i
number += i
[0:4] 0<=x<4
products = {
"bread" : 1000,
"milk" : 3000,
"egg": 6000
}
print(products["bread"]) -> 있으면 1000 출력
print(products.get("drink", 0)) -> get은 값이 있으면 값출력 / 없으면 0 출력
함수를 주로 써야함 -> 전역변수 방지
다른파일 or 폴더에서 import해오기
from folder import b
print(b.b_function)
조건문
if / elif / if not / else