I have a string like
\"xdtwkeltjwlkejt7wthwk89lk\"
how can I get the index of the first digit in the string?
you can use regular expression
import re y = "xdtwkeltjwlkejt7wthwk89lk" s = re.search("\d",y).start()