Write a Python program to get the details of the math module.

Write a Python program to get the details of the math module.

1
2
3
4
5
# Imports the math module
import math            
#Sets everything to a list of math module
math_ls = dir(math) # 
print(math_ls)

Final output

Leave a Comment