how to format 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: python string format
print("My name is {0} and I am {1} years old".format(name, age))
Example 3: 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}"