您的位置:首页 > 编程语言 > Python开发

笨方法学习Python - 学习记录

2014-01-09 15:44 330 查看
1、https://learn-python-the-hard-way-zh_cn-translation.readthedocs.org/en/latest/ex14.html (习题 14: 提示和传递)

-> 查一下 Zork 和 Adventure 是两个怎样的游戏。看看能不能下载到一版,然后玩玩看

2、文件操作:https://learn-python-the-hard-way-zh_cn-translation.readthedocs.org/en/latest/ex15.html (16、17)

3、到18页

4、https://learn-python-the-hard-way-zh_cn-translation.readthedocs.org/en/latest/ex46.html (习题 46: 一个项目骨架)

-> 如何建立一个项目“骨架”目录,以及一些与python安装、卸载、插件管理有关的模块:

  1) distribute – http://pypi.python.org/pypi/distribute : a deprecated fork of the Setuptools project.

  2) setuptools - https://pypi.python.org/pypi/setuptools : Easily download, build, install, upgrade, and uninstall Python packages

  3) pip – http://pypi.python.org/pypi/pip :A tool for installing and managing Python packages

  4) nose – http://pypi.python.org/pypi/nose/ :nose extends the test loading and running features of unittest, making it easier to write, find and run tests. 

  5) virtualenv – http://pypi.python.org/pypi/virtualenv :Virtual Python Environment builder, is a tool to create isolated Python environments.
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: