표준입력 (stdin)
실행옵션 (runtime option)
코드:
실행 »
표준입력/실행옵션
import math print(math.pi) print(math.pow(2, 2)) from math import * print(pi) print(pow(2, 2))