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
0
Answer:
T=(1,2,3,4)
list1=list(T)
print(list1)
Explanation:
Similar questions
Math,
2 months ago
Math,
2 months ago
Math,
2 months ago
Computer Science,
4 months ago
Computer Science,
4 months ago
Science,
10 months ago
Biology,
10 months ago