tuple_ = 1, 2, 3, 4, 5 str(list(tuple))
Here is what the above code is Doing:
1. We create a tuple with 5 elements.
2. We convert the tuple into a list.
3. We convert the list into a string.
4. We print the string.
tuple_ = 1, 2, 3, 4, 5 str(list(tuple))
Here is what the above code is Doing:
1. We create a tuple with 5 elements.
2. We convert the tuple into a list.
3. We convert the list into a string.
4. We print the string.