Format - string



examples/format/formatted_string.py
name = "Foo Bar"

print("{:s}".format(name))
print("{}".format(name))

Foo Bar
Foo Bar