1.
import math
math.exp(1)
2.
import math
exp(1)
3.
import math as m
m.exp(1)
4.
import math as m
math.exp(1)
5.
from math import *
math.exp(1)
6.
from math import *
exp(1)
7.
from math import exp
exp(1)
选择正确的mathexp表达
- 写回答
- 好问题 0 提建议
- 关注问题
- 邀请回答
-
1.
import math
math.exp(1)
2.
import math
exp(1)
3.
import math as m
m.exp(1)
4.
import math as m
math.exp(1)
5.
from math import *
math.exp(1)
6.
from math import *
exp(1)
7.
from math import exp
exp(1)