
print("Number of letters in your name: " + len(input("Enter your name"))) >> 숫자라 오류
age = 12
print(f"I am {age} years old")
print("I am {0} years old".format(age))
print("I am %d years old." %age)
print("Welcome to the tip calculator!")
bill = float(input("What was the total bill? $"))
tip = int(input("What percentage tip would you like to give? 10 12 15 "))
people = int(input("How many people to split the bill? "))
pay=round(bill*(1+tip*0.01)/people,2)
print(f"Each person should pay : {pay}")
