Contact: aviboots(AT)netvision.net.il
41,230 questions
53,732 answers
573 users
import math print(math.exp(1)) print(math.exp(-1)) print(math.exp(0)) print(math.exp(math.pi)) print(math.exp(10)) ''' run: 2.718281828459045 0.36787944117144233 1.0 23.140692632779267 22026.465794806718 '''