西瓜书学习过程python笔记

1.分数

1/3

from fractions import *
Fraction(1,3)

2.对数

以2为底的0.2的对数

import math
math.log(0.2,2)


你可能感兴趣的:(python)