模塊

# collections模塊 # namedtuple from collections import namedtuple # Point = namedtuple('point',['x','y','z']) # p = Point(1,2,4) # p1 = Point(3,2,1) # print(p.x) # print(p) # print(p1) # # # 花色和數字 # Car
相關文章
相關標籤/搜索