Python学习笔记(2014.09.28)

2014.09.28

错误提示

0,命名错误(nameError)

变量未定义或者变量名错误
函数未定义或者函数名错误
忘记import库

1,属性错误(AttributeError)

大小写拼写错误

Misspelled a constant or a call to a function in a module (the part after the period)

例如:pi写成了Pi

2,TypeError

函数需要两个参数实际只提供了一个

数据类型错误(int,float,string)

3,SyntaxError 语法错误

函数定义后忘记写“:”
== 和 =
字符串和变量(输入)

注释:

"""
"""

编程过程中空格的使用

math模块:

math.pi
math.sqrt

random使用

random.randint(start, stop)
random.randrange(stop)
random.randrange(start, stop)
random.randrange(start, stop, step)

Rock-paper-scissors-lizard-Spock

作品

你可能感兴趣的:(Python学习笔记(2014.09.28))