I cant seem to get the total from my while true loop. I am trying to write a code . That will get the total value for all the seats a waiter enters. But I keep getting the total like this Total:$ q I had set q to break if the user input it for a seats. Can you help me please. Here is my syntax.
while True:
seats = raw_input("Enter the value of the seat [q to quit]:")
if seats == 'q':
break
print "Total: $", seats