摘要:
1. python中的变量叫names而不是variables; I use the word attribute for any name following a dot — for example, in the expression z.real, real is an attribute o 阅读全文
摘要:
1. 在学slice的时候有个地方感到困惑: unc main() { s := []int{2, 3, 5, 7, 11, 13} printSlice(s) // Slice the slice to give it zero length. s = s[:0] printSlice(s) // 阅读全文