I'm having a hard time finding what can be put inside literal strings.
For example, I've seen this code on the PEP above, yet I didn't find any information above about what it does.
>>> value = 1234
>>> f'input={value:#06x}'
'input=0x04d2'
Is there a tutorial for understanding string literals better?