Python - Modules and Code Organization
What does the statement
from math import sqrt do in Python?from math import sqrt do in Python?from module import item imports only the specified item from the module.sqrt function is imported from the math module, not the whole module.sqrt function from the math module. -> Option B15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions