QuestionQ74
Modules and PackagesWhat is the expected output of this code?
import sys
import math
b1 = type(dir(math)) is list
b2 = type(sys.path) is list
print(b1 and b2)
- A None
- B True
- C 0
- D False
What is the expected output of this code?
import sys
import math
b1 = type(dir(math)) is list
b2 = type(sys.path) is list
print(b1 and b2)
Community Discussion