33-
Assume that there is an existing module called shapes containing the definition of a constant named PENTAGON_SIDES. This module is imported in a separate new script using import shapes. What is the Python statement for displaying the value of PENTAGON_SIDES from the new script?
print(shapes.PENTAGON_SIDES)
module_print(shapes, PENTAGON_SIDES)
using shapes print(PENTAGON_SIDES)
print(PENTAGON_SIDES)
print(shapes(PENTAGON_SIDES))
print(shapes)
Already registered? Login
Not Account? Sign up
Enter your email address to reset your password
Back to Login? Click here