Result Size:
625 x 571
demo_string_format1.py:
age = 36 txt = "My name is John, and I am {}" print(txt.format(age))
x
age
=
36
txt
=
"My name is John, and I am {}"
print
(
txt
.
format
(
age
))
C:\Users\My Name>python demo_string_format1.py
My name is John, and I am 36