Not sure if it is possible but is there a way to multiply,add,or subtract values in a tuple? Say for example I have:
a=raw_input("enter 2 numbers separated by a /: ") #5/2 entered
b=a.split("/")
c=a[0]+a[1]
print c
The value comes out to 52 which is obviously wrong. Is their a way to specify that a[0] is int 5 instead of just the value 5?