I was wondering if I could force the program to calculate an input before converting it to an integer. for example my code is
shift=int(raw_input("input the shift you want "))
If I was to input 4**2 which should then in theory equal 16 however as the raw input is a string this cannot happen. I would like to know if there was force the program to calculate the input meaning if I inputted a calculation then the program would work it out instead of just converting it to an integer and causing an error.