week1-python
기본미션 - p101 3번, 4번, 5번 문제 5행에서 IndexError chapter01 - chapter02 자료형 nu = 10_000_000 # 숫자 int float st = 'three' # 문자 chr str bo = False # 불린 bool li = [1, 2, 3, 4] # list tu = (1, 2, 3, 4) # tuple se = {1, 2, 3, 4} # set di = {'name': 'gy', 'age': 4} # dict number n = 1 print(f"{n:05d}") # 00001 a = 12.355 print(f"{a:5.1f}") # 12.4 n = 10 a = 0b1010 # 10, int b = 0o12 # 10, int c = 0xA # 10, int..