<a href="http://www.jianshu.com/p/54870e9541fc">总目录</a>
课程页面:https://www.codecademy.com/
课程学完有几个月了,但是没有写笔记,总是感觉基础不扎实。
这些主要是写给自己看的笔记,很多英文就懒得查对应的中文专业表是什么了。
Whitespace
- 在Python中,whitespace 或者 indentation 这类东西不可忽视。
Comment:
- single line comment:
# 这里是单行评论
- multiline comment:
"""
这里是多行评论
"""
Exponentiation:
**
a = 9 ** 2
b = 3 ** 3
即a = 81, b = 27
Modulo
%
9 % 5
# 结果是4
网友评论