關於python的一些小建議(整理)

循環 1、使用while 1 代替 while true 2、在循環時,使用xrange而非range,使用 xrange 能夠節省大量的系統內存,由於 xrange() 在序列中每次調用只產生一個整數元素。而 range() 將直接返回完整的元素列表,用於循環時會有沒必要要的開銷。 3、使用Map、Reduce、fileter 代替for循環 一、Map: >>>def add(x): >>>
相關文章
相關標籤/搜索