Run ❯
Get your
own Python
server
×
Change Orientation
Change Theme, Dark/Light
Go to Spaces
import re txt = "That will be 59 dollars" #Find all digit characters: x = re.findall("\d", txt) print(x)
['5', '9']