在print后加',',可以避免输出回车
for i in range(1,101):
print i,
另一种方法使用sys模块中的方法:
import sys
for i in range(1,101):
sys.stdout.write(str(i))