0
Modules
What is the output of this code? import math as m print(math.sqrt(25)) An error occurs 25 5
3 Respostas
+ 5
If you import math as m, then do:
m.sqrt(25)
0
an error occurred
- 2
In they program no error!
I got 5 in JUPYTER!
What is the output of this code? import math as m print(math.sqrt(25)) An error occurs 25 5