You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
#Format variable using a string.format() method.Write a program to use string.format() method to format the following three variable as per the expected output
#totalMoney = 1000
#quantitty = 3
# price = 450
#I have 1000 dollars so I can buy 3 football for 450.00 dollars.
totalmoney=1200
quantity=4
price=450
print("i have {} dollars so i can buy {} football for {} dollars".format(totalmoney,quantity,price))