Python | Split String into Variables
🚀Summary: Split the given string using the split() function and then unpack the items of the list returned by the split method into different variables. Minimal Example Problem Formulation 📝Problem: Given a string. How will you split the string and then store the split strings into different variables? Example 1 In the above problem, the … Read more