English 中文(简体)
学习Python的最佳在线资源?[已关闭]
原标题:
  • 时间:2008-09-16 09:08:47
  •  标签:
Locked. This question and its answers are locked because the question is off-topic but has historical significance. It is not currently accepting new answers or interactions.

我对任何脚本语言都是新手。但是,尽管如此,我在编写脚本方面的工作有点像为我的目的定制其他脚本。对我来说,学习Python最好的在线资源是什么?

[响应摘要:]

一些在线资源:

http://docs.python.org/tut/tut.html-初学者

http://diveintopython3.ep.io/-中级

http://www.pythonchallenge.com/-专业技能

http://docs.python.org/-收集所有知识

更多信息:

Python的一个字节

Python 2.5快速参考

Python侧栏

适合初学者的博客

思考Python:软件设计导论

最佳回答

如果你需要从头开始学习python,你可以从这里开始:http://docs.python.org/tut/tut.html-优秀的创业者指南

如果您需要扩展您的知识,请在此处继续http://diveintopython3.ep.io/-良好的中级书籍

如果您需要完美的技能,请完成此http://www.pythonchallenge.com/-出色而有趣的挑战

而完美的知识来源是http://docs.python.org/-收集所有知识

问题回答

如果你是初学者,试试我的书http://www.swaroopch.com/notes/Python“rel=”nofollow noreferrer“>Python的一个字节。

如果您已经有编程经验,请尝试深入Python

我认为Python挑战很棒。

这不是关于学习Python(语法),而是为您提供一些小而有趣的谜题。解谜是基于Python的,但你可以使用任何合适的方法(你的计算器、bash脚本、Perl…)。在你解决了一个问题后,你可以看看其他人是如何解决的,并可以讨论其优点和优点;不同方式的缺点。

非常好的,可以了解如何在Python中完成任务(smart)。如果你对其他脚本语言或命令行等有所了解,这个网站就特别好用。

Python主页上的教程是一个很好的起点。此外,还有一些屏幕截图此处

这些都是无法估价的在线参考工具:

其他针对初学者的在线资源:

Python教程实际上相当不错。

还有一个showmedo上关于python的视频系列

在这两种资源之间,你应该有足够的资源来学习基础知识!

您可以查看在Python中构建技能也是如此。它假定在编程方面有一定的经验。

如果您是新手,请尝试建立编程技能。它包括许多背景和基础知识。

谷歌的Python类

Welcome to Google s Python Class -- this is a free class for people with a little bit of programming experience who want to learn Python. The class includes written materials, lecture videos, and lots of code exercises to practice Python coding. These materials are used within Google to introduce Python to people who have just a little programming experience. The first exercises work on basic Python concepts like strings and lists, building up to the later exercises which are full programs dealing with text files, processes, and http connections. The class is geared for people who have a little bit of programming experience in some language, enough to know what a "variable" or "if statement" is. Beyond that, you do not need to be an expert programmer to use this material.

我从Python教程

+1用于深入Python

python手册

这有时有点冗长,但它告诉了你一切你需要知道的开始。

PLEAC,有一本Python食谱,非常有用。

I consider ActiveState s Python community to be a great resource. Also DZone Snippets can be useful.

我第一次遇到软件木匠查看python教程列表。但它远不止是关于python的教程。事实证明,我真正学到的是如何使用subversion,而且我的项目中没有一个比perl更适合python。

还要考虑[Hands-On Python](http://www.cs.luc.edu/~anh/python/hands-打开/)。它被用作洛约拉大学计算机科学150的主要文本。这是对Python的简要介绍,同时强调良好的编程风格和设计。

Python食谱非常有用。





相关问题