- Python标准库--decimal
- Python好的文章Python 工匠:使用数字与字符串的技巧
- Python代码片段
- Python读书--�Python cookbook
- Python框架相关--Flask 上下文对象源码
- Python项目相关--lsbasi
- Python之外--中英双语字幕精校版 CSAPP
python标准库 decimal
- basic 注意:Decimal中应该放的是字符串
a = 4.2
b = 2.1
a + b != 6.3
from decimal import Decimal
c = Decimal("4.2")
d = Decimal("2.1")
c + d == Decimal("6.3")
- localcontext 使用上下文表达式