Renaming A Module Using As
Mon 10 August 2026
import math as m
print(m.pi) # Output: 3.141592653589793
3.141592653589793
Score: 10
Category: chapter10_modules_and_packages
import math as m
print(m.pi) # Output: 3.141592653589793
3.141592653589793
Score: 10
Category: chapter10_modules_and_packages