标签:
一、输入函数input()和raw_input()
区别:
>>> a = input() 3 >>> type(a) <type ‘int‘> >>> b = input() ‘3‘ >>> type(b) <type ‘str‘> >>> c = raw_input() 3 >>> type(c) <type ‘str‘>
二、输出函数print()
在Python2.7中可以不用括号(用一个空格间隔),但是在Python3.x中统一为print(),必须有括号。
print(self, *args, sep=‘ ‘, end=‘\n‘, file=None)
>>> print(‘a‘, ‘b‘, ‘c‘, sep=‘-‘, end=‘#‘) a-b-c# >>>
三、注释
行内注释用#,在一行的#之后被认为是注释;
多行注释用一对三个引号("""或‘‘‘都行,在Python中单引号和双引号没有区别)将注释内容引起来。
四、运算符
/:除运算,结果为浮点数
//:模运算(在2.7中/和//都是模运算)
**:幂运算
%:结果为两数相处的余数
标签:
原文地址:http://www.cnblogs.com/guyuyun/p/5723579.html