摘要:
脚本这种东西,就是要常用,否则一段时间不用就生疏了,因此决定时时记一些小知识点,一来回顾一下,二来需要的时候可以迅速获得提示。Sort by numberYou could now write a numeric sort subroutine like this:1 sub by_number {2 # a sort subroutine, expect $a and $b3 if ($a $b) { 1 } else { 0 }4 }To use the sort subroutine, just put its name (without an ampersand) b... 阅读全文
摘要:
PyInstaller可以将Python程序打包成Windows(当然也包括Linux, Mac OS X, Solaris and AIX)下可执行的EXE文件,目前支持python2.2-2.7版本,点击这里下载。使用PyInstaller需要安装PyWin32,可到这里下载相应的版本。(从pywin32的下载量看,还是Python2.7使用更广泛)下载对应已安装的Python版本的PyInstaller版本,解压到任意目录,按照提供的manual文档进行即可。假设要转换的Python代码为txexe\hello.py.进入PyInstaller安装根目录,执行以下命令。python Co 阅读全文
摘要:
这是Google的自动驾驶汽车,真正的概率机器人应用。Sebastian Thrun:Sebastian Thrun is a Research Professor of Computer Science at Stanford University, a Google Fellow, a member of the National Academy of Engineering and the German Academy of Sciences. Thrun is best known for his research in robotics and machine learning, s 阅读全文
摘要:
最近开始学Python,的确是又易学又强大的编程语言,阅读python编写的程序也很简单,就连google的自动驾驶汽车也是用Python开发的。Python下载http://python.org/getit/Python教程Python for Non-Programmers简明 Python 教程Dive Into Python(中文版)Invent Your Own Computer Game with Python及其续篇Making Games with Python & Pygame用编写游戏的方式学习Python编程,会比较有意思。Python视频Khan Academy 阅读全文