b=tuple([1,9,8,78,63,22,45,45.8,77,6])#用tuple列表轉元組,
c=(1,9,8,78,63,22,45,45.8,77,6)#直接用小括號()
print(a)
print(b)
print(c)