imagine I have this Python Code
text1 = 'hello I need to split this string'
text1_split = text1.split(' ')
Now that I have split the string into the seven parts how can I count them and then assign each string to a variable that the program creates, maybe result_1, result_2, result_x.... and so on? Or I guess I just need to analyse each section individually and report each result as a different variable so if that way around it is easier to explain I am down for that too! Thanks for the help guys I appreciate it!!