I know that in Python you can use the array selector to retrieve a certain part of a string, ie me.name[10:
] to get just the last 10 characters.
but how would you retrieve just the part of a string after an underscore ie _
using a single expression?
For example if my string is "stringcharThatChange_myname"
How would I extract just 'myname'
? I'm confined to using Python 3.5.1