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 can also try:
int(''.join(i for i in just if i.isdigit()))