What is printed by the python code? print(list(range(3)))
a) [0, 1, 2, 3]
b) [1, 2, 3]
c) [0, 1, 2]
d) 0, 1, 2
Answers
Answered by
2
Answer:
[0,1,2]
Explanation:
this is what you get. see it by youself by downloading pyroid3 if you want
Similar questions