Computer Science, asked by poojarai1563, 6 months ago

what will be the output of following code snippet
values=[ ]
for I in range (1,4)
value.append(I)
print values

Answers

Answered by sambhavgautam6
1

OUTPUT:-

values = [1,2,3]

Answered by aarohinandita
0

Answer:

[1,2,3]

Explanation:

OUTPUT

VALUES. [1,2,3]

Attachments:
Similar questions