indentation中文 在 大象中醫 Youtube 的最佳貼文
indentation中文 在 大象中醫 Youtube 的最讚貼文
indentation中文 在 【Python】新手注意! Indentation 縮排不容有錯! If-Else 條件 ... 的推薦與評價
If-Else 條件句Ternary Operators 三元條件運算符教學( 中文 字幕) (可調節 ... Python Programming If-Else 條件句, Indentation 縮排Apply control ... ... <看更多>
indentation中文 在 [問題] 請問error:inconsistent indentation detected?? - 批踢踢 ... 的推薦與評價
#字串1abc2xyz3mno4ijk
#想要得到數字間字母的bigram
#目標是 S1=['ab', 'bc'] S2=['xy', 'yz'] S3=['mn', 'no'] S4=['ij', 'jk']
big=['1', 'a', 'b', 'c', '2', 'x', 'y', 'z', '3', 'm', 'n', 'o', '4', 'i',
'j', 'k']
L1=[(0, 's1'), (4, 's2'), (8, 's3'), (12, 's4')]
L2=[0, 4, 8, 12]
S1,S2,S3,S4=[],[],[],[]
for i in range(4):
if L1[i][1]=='s1':
for j in range(L2[i]+1,L2[i+1]-1):
print i,j
S1.append(big[j]+big[j+1])
print S1
elif L1[i][1]=='s2':
for j in range(L2[i]+1,L2[i+1]-1):
print i,j
print big[j]+big[j+1]
#1 S2.append(big[j]+big[j+1])
一旦拿掉#1就會出現error:inconsisten indentation detected,
google了一下indentation中文叫縮進,但還是不懂怎麼解,請問
有人知道如何解嗎,感恩
--
※ 發信站: 批踢踢實業坊(ptt.cc)
◆ From: 114.32.128.82
... <看更多>