The output I\'m getting for my little example app is the following:
Welcome to the Calculator! Please choose what you\'d like to do: 0: Addition 1: Subtracti
>>> a = "123" >>> int(a) 123
Here's some freebie code:
def getTwoNumbers(): numberA = raw_input("Enter your first number: ") numberB = raw_input("Enter your second number: ") return int(numberA), int(numberB)