In Idle (Python 3.4.3) I'm trying to get it to print out the total (which it does) but then it won't do it with the statement "...is how many sweets you'll need." It just comes up with this message:
Non-Type object is not callable
This is what I'm typing in...
children = input ("How many children are there? ")
sweets = input ("How many sweets are there? ")
total = int(children)*int(sweets)
print (total) "is how many sweets you'll need"
How do I get it to display this statement after the total?!!
Any help greatly appreciated!