Computer Science, asked by abhijeetavhad0106, 2 months ago

Write a python statement to convert a tuple T into a list L .where T=(1,3,5,7) and
print the same.

Answers

Answered by vijayakumarchinthala
0

Answer:

T=(1,2,3,4)

list1=list(T)

print(list1)

Explanation:

Similar questions