摘要: Datetime:2014-05-0717:04:53PYTHON 号称胶水语言。一,表,元组,字典区别:表:可以修改a=[1,3,4,5]a[2]=5print a#[1,3,5,5]View Code元组:不能被修改a=(1,2,3)a=(a[0],2,a[1])print a#1,2,2#数组... 阅读全文
posted @ 2014-05-07 17:23 UCanBeFree 阅读(143) 评论(0) 推荐(0)
摘要: 拷贝替换文件 yes|cp -r /dir/targe targe查看已安装软件包 sudo dpkg -lfind -exec 处理文件当参数过长,就回中断。find .-type f -print |xargs filerm -rf !(keep1 | keep2) #删除keep1和kee... 阅读全文
posted @ 2014-05-07 13:56 UCanBeFree 阅读(978) 评论(0) 推荐(0)
摘要: Datetime:2014-05-0712:18:54 why I use it?在用python 做gui开发,tkinter是最基本的知识。小型应用上很有帮助。1,Downloading the module:sudo apt-get install python-tk2,Simple Exam... 阅读全文
posted @ 2014-05-07 12:16 UCanBeFree 阅读(167) 评论(0) 推荐(0)