1. 程式人生 > >Python 學習筆記: 一些常用模組

Python 學習筆記: 一些常用模組

Python 一些常用模組

 

python 裡的一些常用模組。

 

1 namedtuple 模組

from collections import namedtuple

Point = namedtuple('Point',['x','y'])
p1= Point(1,2)
print(p1)
print(p1.x,p1.y)