So I wanna make a code that solves simple problems (For example 3+4=? or 2/4+5=?) that are typed in by the user with input() but it treats the returned value as a string and it doesn't wanna work. Basicly I wanna do this correctly:
print('Enter a problem:')
equals = input()
print('The answer is {}.'.format(equals))
Thanks in advance and have a nice day!