10 28上課筆記(I love # and ''') - s40223228/2016fallcp_hw GitHub Wiki

1.(按鈕)option > wrap use for information which is too long to see, it can help you to share it 2 ~more line.

2.(程式) a.#print(len(group)) for i in group: print(group[i]) for 迴圈, i為變數

b.for i in range (1,5): print(i) 從1執行到5

c.not_in_group = [c for c in registered if c not in result_g]

d.for m in registered: if m not in result_g: print(m) 從成員選單中選出為分組成員並挑出

e.data = open("w6_group.txt").read() print(data) 開啟檔案()並讀取()裡的東西,並顯示之

Seriously, I have no idea about programming language. But today I know ''' and # are really useful, It can help you lock the line of language which you no need to use right now(and it no need to delete it).