Computer Science, asked by AakritiSahu, 8 months ago

What is use of F string in python?​

Answers

Answered by surbhikushwaha17
5

Answer:

F-strings provide a way to embed expressions inside string literals, using a minimal syntax. It should be noted that an f-string is really an expression evaluated at run time, not a constant value. In Python source code, an f-string is a literal string, prefixed with 'f', which contains expressions inside braces........

Answered by karanyadav47
0

Answer:

F-strings provide a way to embed expressions inside string literals, using a minimal syntax. It should be noted that an f-string is really an expression evaluated at run time, not a constant value. In Python source code, an f-string is a literal string, prefixed with 'f', which contains expressions inside braces

Similar questions