I want to receive operator (such as '+','-','*','/') and use it directly in the code body. someting like:
char = raw_input('enter your operator:')
a=1
b=5
c=a char b #error! how can i do it?
If the user entered '*', c will be 5.
If the user entered '+', c will be 6 and so on..