Python小知识(4)

导入模块及方法

import math
from math import sqrt

print(math.floor(11.1))
print(sqrt(9.1))




你可能感兴趣的:(Python小知识(4))