python中stdout是什么意思
当我们在 Python 中打印对象调用 print obj 时候,事实上是调用了
sys.stdout.write(obj '\n')
print 将你需要的内容打印到了控制台,然后追加了一个换行符“\n”
print 会调用 sys.stdout 的 write 方法
以下两行在事实上等价:
sys.stdout.write('hello' '\n')
=
print 'hello'
例如:
#coding=gbk
from sys import stdout
n = input('input number:\n')
print 'n = %d' % n
for i in range(2,n 1):
while (n != i):
if(n%i == 0):
stdout.write(str(i))
stdout.write('*')
n =
n/i
else:
break
print '%d' % n
sys.stdin 与 raw_input
当我们用 raw_input('Input promption: ') 时,事实上是先把提示信息输出,然后捕获输入
以下两组在事实上等价:
hi=raw_input('hello?')
print'hello?',#comma to stay in the same
linehi=sys.stdin.readline()[:-1]#-1
to discard the '\n' in input stream
赞 (0)