Python - Modules and Code Organization
Consider this code:
What will be the output?
import sys print(type(sys.path))
What will be the output?
import sys print(type(sys.path))
type(sys.path) returns the class type of the object, which is list.15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions