What is Python?
Python is a dynamic object-oriented programming language that can be used for many kinds of software development. It offers strong support for integration with other languages and tools, comes with extensive standard libraries, and can be learned in a few days. Many Python programmers report substantial productivity gains and feel the language encourages the development of higher quality, more maintainable code. -- python.org
Here is the Wikipedia entry for Python.
What are these nice features I am going to talk about in future?
- First Class Functions
- Exec & Eval
- Default arguments in functions
- Variable Number of function Arguments
- Introspection
- Lamda
- Filter
- Map
- Reduce
- Iterators
- List Comprehensions
- Generators
- Generator Expressions
- Decorators
- Metaclasses
Related posts brought to you by Yet Another Related Posts Plugin.



1 response so far ↓
1 Beauty of Python Part 2: First Class Functions // Aug 8, 2008 at 6:35 am
[...] In this post I am going to describe first feature from the list of Python features I have mentioned in the previous article. [...]
Leave a Comment