파이썬 문법 플래시카드(2개)

int( )
정수로 바꿔주는 함수. print(int(a)) / map(int,input().split())
float()
실수(소수점)으로 바꿔주는 함수 / print(float()) / float(a)+float(b)