元組的建立方式
元組的遍歷
python內建的資料結構之一,是乙個不可變序列
t = ('python', 'hello', 90)
t = ('python', 'hello', 90)
t = tuple(('hello', 'python', '123'))
t = (10, )
t =
('python',[
10,20]
,123)t[
1]30)
# 如果元組中的物件是可變物件, 則可變物件的引用不可改變, 但資料可以改變
print
(t)# ('python', [10, 20, 30], 123)t[1
]=10# 如果元組中物件本身是不可變物件, 則不能再引用其他物件
print
(t)# typeerror
t = tuple(('python', 'hello', 90))
for item in t:
print(item)
t =
('python',[
10,20]
,123
)for i in t:
print
(i)
python第十三課
迭代器 l 1,2,3 索引 迴圈 for for i in l i for k in dic pass enumerate print dir 告訴我列表擁有的所有方法 print dir 告訴我列表擁有的所有方法 print dir 告訴我列表擁有的所有方法 print dir range 10...
第十三課 彙編基礎學習 十三
請注意 該動畫內如含廣告與本站無任何關係,為作者個人宣傳,網路交易風險自負 and指令 且 and 邏輯與指令,按位進行與運算。必須兩個運算元都為1,那麼返回為1。有乙個為0,則返回為0 示例 mov al,00001000b and al,11110111b 執行後al 0 00001000b 8...
第十三課 模組
第十三課 模組 在python中,乙個py檔案就是乙個模組,檔名為 py模組名則是 匯入模組可以引用模組中已經寫好的功能。1.import語句 檔名 foo.py x 1def get print x def change global x x 0要想在另外乙個py檔案中引用foo.py中的功能,需...