The following code:
a = 0
b = f'{"c": {a}}'
throws the error: ValueError: Sign not allowed in string format specifier
How to fix it?
The following code:
a = 0
b = f'{"c": {a}}'
throws the error: ValueError: Sign not allowed in string format specifier
How to fix it?