python format function example

Example 1: How to use .format in python

#The {} are replaced by the vairables after .format
new_string = "{} is string 1 and {} is string 2".format("fish", "pigs")

Example 2: formatter in python

#TO  know this execute  and check
username,password = "GOOGLE","google"
#a. %  first type
print("User name=%s User password=%s"%(username,password))
#b. {}  second type
print("User name={} User password={}".format(username,password
#c. f  third type
print(f"User name={username} User password={password}")
print(f"User name={username} \nUser password={password}"

Example 3: format 100 python

"{0:.2f} {1:.3f}".format(12.3152, 89.65431)
print('Combined content length = {0:,d}'.format(len(combined)))