how to return format string in python code example
Example 1: python string format
string_a = "Hello"
string_b = "Cena"
print("{0}, John {1}"
.format(string_a, string_b))
print("{greeting}, John {last_name}"
.format(greeting=string_a, last_name=string_b))
Example 2: formatter in python
username,password = "GOOGLE","google"
print("User name=%s User password=%s"%(username,password))
print("User name={} User password={}".format(username,password
print(f"User name={username} User password={password}")
print(f"User name={username} \nUser password={password}"