I have this string, in which the first word is the name, the second in the given name and the third is the age:
'Snow,John,21\nLincoln,Abraham,31\nGates,Bill,29'
For each person I would like to extract something like this:
'Name: ___ | Given name: ___ | Age: ___'
I was thinking to split the string and after that to run through it with For. But I am new to Python and I got stuck here. Do you have any ideas? Thanks!