0
How can I split a text into tuple ?
When you split a text it outputs objects of that string inside a list a = "solo learn".split(" ") a >>> ['solo','learn'] I want to it to output like this ('solo','learn')
1 ответ
+ 7
a = tuple("Solo Learn".split())