python

1.print语句中使用逗号来抑制自动生成的换行符号
code:

<p>fobj = open(filename, 'r')</p><p>for eachline in fobj:</p><p>    print eachline,</p>

这样输出结果会在同一行输出