[067] 절대값 구하기(abs)

책 내용에 대한 무단배포 방지를 위해 최소한으로 정리

abs1 = abs(-3)
abs2 = abs(-5.72)
abs3 = abs(3+4j)
print(abs1)
print(abs2)
print(abs3)

Comments