Based on your use input(), and not raw_input(), I assume that you are using python3.
You just need to convert the user input to a floating point number and divide by 100.
print ("How much does your meal cost")
meal = 0
tip = 0
tax = 0.0675
action = input( "Type amount of meal ")
if action.isdigit():
meal = float(action)
tips = input(" type the perentage of tip you want to give ")
if tips.isdigit():
tip = float(tips) / 100 * meal
print(tip)
source
share