try this:
print("Between everyone the meal costs", bill2 / int(people))
other solution is cast people input:
people = int(input("How many people are available to pay? "))
solved Python Restaurant Price + Tip [closed]
try this:
print("Between everyone the meal costs", bill2 / int(people))
other solution is cast people input:
people = int(input("How many people are available to pay? "))
solved Python Restaurant Price + Tip [closed]