We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4476333 commit 4e4de92Copy full SHA for 4e4de92
1 file changed
python-first-steps/imports.py
@@ -1,11 +1,9 @@
1
import math # Module import
2
+from math import pi as PI # Import with alias
3
+from math import sqrt # Function import
4
5
print(math.sqrt(16))
6
-from math import sqrt # Function import
-
7
print(sqrt(25))
8
9
-from math import pi as PI # Import with alias
10
11
print(PI)
0 commit comments