摘要: ls -R | grep ":$" | sed -e 's/:$//' -e 's/[^-][^\/]*\//--/g' -e 's/^/ /' -e 's/-/|/'It seems useful as a upgrade version of 'ls -R' 阅读全文
posted @ 2014-10-22 16:34 Geek_GeNE 阅读(133) 评论(0) 推荐(0) 编辑
摘要: Following code explain how 'global' works in the distinction of global variable and local variable. 1 var = 'Global Variable' 2 print(var) 3 4 def fu... 阅读全文
posted @ 2014-10-22 11:14 Geek_GeNE 阅读(523) 评论(0) 推荐(0) 编辑