Cortar 0s en String Python
>>> '00000010'.lstrip('0')
'10'
Homely Hummingbird
>>> '00000010'.lstrip('0')
'10'