Skip to content

Latest commit

 

History

History
10 lines (10 loc) · 148 Bytes

File metadata and controls

10 lines (10 loc) · 148 Bytes
>>> f'{12345:+}'      # [sign] (+/-)
'+12345'
>>> f'{-12345:+}'
'-12345'
>>> f'{-12345:+10}'
'    -12345'
>>> f'{-12345:+010}'
'-000012345'