숫자 처리 함수
abs( ) : 절대값 pow( , ) : 제곱값 max( , ) : 최대값 min( , ) : 최소값 round( ) : 반올림 round( ,n) : n번째 자리까지 반올림 floor( ) : 올림 ceil( ) : 내림 sqrt( ) : 제곱근 print(abs(-5)) print(pow(4, 2)) print(max(5, 12)) print(min(5, 12)) print(round(3.14)) print(round(4.99)) print(round(3.67283746, 2)) from math import * print(floor(4.99)) #올림 print(ceil(3.14)) #내림 print(sqrt(16)) #제곱근 -출처- www.youtube.com/watch?v=kWiCuklohdY