• 코드:
​x
 
1
import math
2
​
3
print(math.pi)
4
print(math.pow(2, 2))
5
​
6
from math import *
7
​
8
print(pi)
9
print(pow(2, 2))
10
​
표준입력 & 실행옵션