Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Regex plus a fake character solution in Creative category for Beginning Zeros by Fermax
import re
# Find first non-zero in string, with extra character added in case there are no zeros
beginning_zeros = lambda s: re.search(r'[^0]', s+'1').start()
March 8, 2020
Comments: