1 - 导入python 模块
【摘要】 1. 导入python 模块的基本方式
2. 为导入的python 模块指定别名
import math
from math import cos, tan
from math import *
print(math.sin(1.23))
print(cos(2.34))
print(tanh(1.23))
# 指定别名 as
# 一旦指定了别名,原来的名字就不...
1. 导入python 模块的基本方式
2. 为导入的python 模块指定别名
import math
from math import cos, tan
from math import *
print(math.sin(1.23))
print(cos(2.34))
print(tanh(1.23))
# 指定别名 as
# 一旦指定了别名,原来的名字就不能用了
import math as mt
print(mt.sin(2))
from math import cos as cs
print(cs(3))
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
0.9424888019316975
-0.695563326462902
0.8425793256589296
0.9092974268256817
-0.9899924966004454
- 1
- 2
- 3
- 4
- 5
文章来源: ruochen.blog.csdn.net,作者:若尘,版权归原作者所有,如需转载,请联系作者。
原文链接:ruochen.blog.csdn.net/article/details/104163576
【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱:
cloudbbs@huaweicloud.com
- 点赞
- 收藏
- 关注作者
评论(0)