When messing around in python with the exclamation mark, it said that it has to be followed by either !a
, !s
, or !r
.
What does !a
do?
Like can you do this?
f"{"txt"!a}"
What will be the result?
"TXT" # Obviously not this, but still
When messing around in python with the exclamation mark, it said that it has to be followed by either !a
, !s
, or !r
.
What does !a
do?
Like can you do this?
f"{"txt"!a}"
What will be the result?
"TXT" # Obviously not this, but still