Python入门.09.模块和标准库 - 北方连萌

Python入门.09.模块和标准库

模块

模块为一个文件(.py)中的函数和值的集合,Python从一开始就提供了包含print()input()等内置函数在内的一组称为标准库的模块可供使用,标准库之外的模块则需要import。

math

import math
print(math.gcd(9, 6)) #求9和6的最大公约数
print(math.sqrt(9)) #求9的算数平方根
print(math.sin(math.pi / 2)) #求90度正弦(弧度制)
print(math.sin(math.radians(90))) #求90度正弦(角度制)
print(math.asin(1)) #反正弦(角度制)
print(math.degrees(math.asin(1))) #反正弦(弧度制)
print(math.radians(360)) #角度转弧度
print(math.degrees(2 * math.pi)) #弧度转角度
3
3.0
1.0
1.0
1.5707963267948966
90.0
6.283185307179586
360.0

random

import random
print(random.randint(67, 86)) #从67~86中随机抽出一个数
print(random.choice('Pineapple')) #从字符串中随机抽出一个字符
print(random.choice(['P', 'i', 'n', 'e', 'a', 'p', 'p', 'l', 'e'])) #从列表中随机抽出一个元素
75
e
p

添加新评论

电子邮件地址不会被公开,评论内容可能需要管理员审核后显示。