str in python

#write str in a formal way:

print("My name is {name}.I have a {small}.The name of my company is {company}.".format(name="Jim",small="Business",company="AppBuilder"))

#results: My name is Jim.I have a Business.The name of my company is AppBuilder.
YEASIN ARAFAT