Q. What will be the output of the following Python code?
Code:
example = "snow world"
print("%s" % example[4:7])
β
Correct Answer: (A)
wo
example = "snow world"
print("%s" % example[4:7])
You must be Logged in to update hint/solution