what is printed by the python code print(list(range(3)))
Answers
Answered by
3
Answer:
this code will print
Explanation:
[0, 1, 2]
Similar questions