OneCompiler

format

169

print("HIT")
print("{HIT}".format(HIT="HINDUSTHAN"))
print("{HIT:}".format(HIT="HINDUSTHAN"))
print("{HIT:<20}".format(HIT="HINDUSTHAN"))
print("{HIT:>20}".format(HIT="HINDUSTHAN"))
print("{HIT:^20}".format(HIT="HINDUSTHAN"))

pi=3.14159
print("The value of pi is {:.2f}".format(pi))