def calc(exp):
    import re
    re.split('(\\*|\\/|\\+|\\-)', exp)
    return print(float(exp[exp.find('*')-1])*float(exp[exp.find('*')+1]))
    


exp = "1+2/32-7*64/32"

print(calc(exp))



요거 돌리면 왜 

42.0

None




이렇게 뜨나요..?  448 떠야 하지 않나요 ㅠ