Python String Math

print eval('2 + 4')
# or
d = eval('4 * 5')
print d
Kodi4444