Advertisements
Advertisements
Question
What is the use of format( )? Give an example.
Short Note
Solution
The format( ) function used with strings is a very versatile and powerful function used for formatting strings. The curly braces { } are used as placeholders or replacement fields which get replaced along with format( ) function.
Example:
num1 = int (input (“Number 1:“))
num2 = int (input (“Number 2:“))
print (“The sum of { } and { } is { }”.format (num1, num2,(num1 + num2)))
OutPut:
Number 1 : 34
Number 2 : 54
The sum of 34 and 54 is 88.
shaalaa.com
The Format( ) Function
Is there an error in this question or solution?