Python 13, import math

 import math

import math as m
from math import sqrt, tan

print(math.sqrt(3))
print(m.sqrt(3))
print(sqrt(3))
print(tan(2))

0 Response to "Python 13, import math"

Posting Komentar