快速入门

1.程序输出 print
2.程序输入 raw_input()
3.注释 #
4.操作符 + - * / // % **(乘方操作符) ([]) 索引操作符 ([:]) 切片操作符
5.字符串 * 星号用于字符串重复
6.列表和元组
列表元素:用中括号[]包裹,元素的个数及元素的值可以改变。
元组元素:用小括号()包裹,不可以更改,可以看成只读的列表。

aList = [1, 2, 3, 4]
aList  [1, 2, 3, 4]
aList[0]

aTuple = ('robots', 77, 93, 'try')
aTuple  ('robots', 77, 93, 'try')
aTuple[:3]

7.字典
aDict = {'host': 'earth'}

  1. if
    if expression:
    if_suite

    if x < .0:
    print "x" must be aleast 0'

if expression:
    if_suite
else:
    else_suite

if expression1:
    if_suite
elif expression2:
    elif_suite
else:
    else_suite

9.while 循环
while expression:
while_suite

for eachNum in [0, 1, 2]:
    print eachNum

10.文件和内建函数
open() file()

11.函数
def function_name ([argument]) :
"optional documentation string"
function_suite

def addMe2Me(x):
    'appley + operation to argument'
    return (x + x)

12.类

class ClassName (base_class[es]) :
    "optional documentation string"
    static_member_declarations
    method_declarations

13.模块

import module_name

module.function()
module.variable

你可能感兴趣的:(快速入门)