What will be the possible outcome of the following code:
import random
X =[1,2,3,4]
m = random.randint(0,3)
for i in range(m):
print (X[i],"--",end=" ")1. 1 —
2.1 — 2 —
3.1 — 2 — 3 —
4.All the above
Answer:4
Posted Date:-2021-12-12 03:26:10