|
>>> help("modules")
...
[¸ðµâ »ç¿ë¹ý]
import datetime
import math
import math as m
from math import pi
from math import *
# import datetime
now = datetime.datetime.now()
print(now)
# import math
print("The value of pi is", math.pi)
# import math as m
print("The value of pi is", m.pi)
# from math import pi
print("The value of pi is", pi)
# from math import *
print("The value of e is", e) |
|