What will be the output of the following Python code, if the code is run on Windows operating system?
import sys
if sys.platform[:2]== 'wi':
print("Hello")
import sys
if sys.platform[:2]== 'wi':
print("Hello")A. Error
B. Hello
C. No output
D. Junk value
Answer: Option B

Join The Discussion