Computer Science, asked by shuvoz, 3 months ago

Find the output :

val = (10,20,30)
a,b,c = val
b=-20
val=(a,b,c)
print(list(val)+[-40,])

Answers

Answered by DarthOberon
1

Answer:

The answer will be :[10,20,30,-40]

Similar questions