I want to get only the numbers from a string. For example I have something like this
just=\'Standard Price:20000\'
And I only want it to pr
You could use string.split function.
string.split
>>> just='Standard Price:20000' >>> int(just.split(':')[1]) 20000