一、Python的输出
1、Python2和Python3的输出差异
python2: print "要打印的字符串"
python2: print ("要打印的字符串")
python3: print("要打印的字符串")
2、Python 中字符串、整形、浮点数的输出
(1)字符串的输出
name = "python"
world = "world"
print("hello %s %s" %(,world,name))
(2)整形的输出
num = 19
print ("num : %d"%(num))
print ("num : %.3d"%(num)) #num精度为3,左侧补零
print ("num : %8.3d"%(num)) #num 占8个位 靠右侧,精度为3位
(3)浮点数的输出
num = 19.456
二、Python的输入
1、Python2和Python3的输入差异
python2:
raw_input(): 接收字符串的数据;
input(): 只能接收数值,他会将输入的内容首先当做运算表达式进行运算。
python3:
三、特殊的输入与输出
输出 : "python's hello world"
输出 : hello world 'python'
输出 20.5%
这里我们需要用到%作为转义字符.