Write the output of the following code : import random A=random.randrange(20) print(A)
1.Any number between 0 to 19 (including both)
2.Any number between 0 to 20 (including both)
3.Any number between 1 to 20 (including both)
4.None of the above
Answer:1