##print, for, while, if
##int
what’s the max?
do we need to consider the overflow?
##string:
There is no char type.
‘a’, “b”, “”"”a””””
concat string:
convert to string
the methods of str
##None, True, False, is
and or
##list
###use list as stack, queue
##tuple:
##dict
##useful libs
##set
##generator expression && list comprehension
##yield
##class and function
classic class and new-style class
###class variable and instance variable
class method
##exception
###try, raise, except, finnaly
##decorators
###bad example
###without arguments
###with arguments
####property
#####Way 1
#####Way 2
materials
皮皮书屋
Basic
- The Python Tutorial
- python-koans
- A byte of python
- Python Tutorial
- Python Cookbook
- Python Testing Cookbook
- Core Python Programming
Advanced
Exercise
- python challenge
- project euler
Web Framework
- django
- tornado
- flask
- web.py
- ….
’