Importing Specific Functions From A Module
Mon 10 August 2026
from math import sqrt, pow
print(sqrt(16)) # Output: 4.0
print(pow(2, 3)) # Output: 8.0
4.0
8.0
Score: 10
Category: chapter10_modules_and_packages
from math import sqrt, pow
print(sqrt(16)) # Output: 4.0
print(pow(2, 3)) # Output: 8.0
4.0
8.0
Score: 10
Category: chapter10_modules_and_packages