You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add a new string literal form that looks like f"...". Inside this literal, $ character has a special meaning: it must be followed by an expression that is evaluated, converted to string, and inserted in the string constructed from the literal at evaluation time.
Two interpolation patterns should be supported: $name evaluates the variable named name, while ${x} evaluates an arbitrary expression x.
The text was updated successfully, but these errors were encountered:
Add a new string literal form that looks like
f"..."
. Inside this literal,$
character has a special meaning: it must be followed by an expression that is evaluated, converted to string, and inserted in the string constructed from the literal at evaluation time.Two interpolation patterns should be supported:
$name
evaluates the variable namedname
, while${x}
evaluates an arbitrary expressionx
.The text was updated successfully, but these errors were encountered: