Python In Depth Notes
My Python Notes
Just bolting down the things I would like to remember.
General
F-string
x = 1.2000005
f'{x!r}'
f'{x!s}'
f'{x:>+20.6f}'
f'{x:>+20.6e}'
format delegates to str which in turn delegates to repr, so if you don't provide format implementati...
kashishbhatia.hashnode.dev2 min read