How can I convert Python strings into tuple?
Answers
Answered by
8
Answer:
Python's built-in function tuple() converts any sequence object to tuple. If it is a string, each character is treated as a string and inserted in tuple separated by commas
Similar questions