how to use format function in python code example
Example 1: formatted string python
name = "Foo"
age = 12
print(f"Hello, My name is {name} and I'm {age} years old.")
Example 2: python .format
Name = 'Tame Tamir'
Age = 14
Formatted_string = 'Hello, my name is {name}, I am {age} years old.'.format(name=Name,age=Age)
print(Formatted_string)
Example 3: How to use .format in python
new_string = "{} is string 1 and {} is string 2".format("fish", "pigs")
Example 4: format 100 python
"{0:.2f} {1:.3f}".format(12.3152, 89.65431)
print('Combined content length = {0:,d}'.format(len(combined)))