最近在学习python
linux/bsd下面都自带了python
windows 要去下载编译器 ActiveState 是免费下载的.可以用一样.
可以上python官网看看视频:
http://showmedo.com/videos/python
用来写写东西,所写即所得,对我这些急进点的人是有帮助的.
>>> print "hello python!'
hellp python!
记住.它是动态的面向对像的(脚本)语言
linux/bsd下面都自带了python
windows 要去下载编译器 ActiveState 是免费下载的.可以用一样.
可以上python官网看看视频:
5 Minutes with Python: A Video Series
它上面介绍有个网站不错http://showmedo.com/videos/python
用来写写东西,所写即所得,对我这些急进点的人是有帮助的.
>>> print "hello python!'
hellp python!
记住.它是动态的面向对像的(脚本)语言
Python is a remarkably powerful dynamic programming language that is used in a wide variety of application domains. Python is often compared to Tcl, Perl, Ruby, Scheme or Java. Some of its key distinguishing features include:
- very clear, readable syntax
- strong introspection capabilities
- intuitive object orientation
- natural expression of procedural code
- full modularity, supporting hierarchical packages
- exception-based error handling
- very high level dynamic data types
- extensive standard libraries and third party modules for virtually every task
- extensions and modules easily written in C, C++ (or Java for Jython, or .NET languages for IronPython)
- embeddable within applications as a scripting interface