热线电话:13121318867

登录
2019-03-19 阅读量: 503
如何在Python 2.x中不使用换行符进行打印


play_arrow
brightness_4
# Python 2 code for printing
# on the same line printing
# geeks and geeksforgeeks 
# in the same line

print("geeks"),
print("geeksforgeeks")

# array
a = [1, 2, 3, 4]

# printing a element in same
# line
for i in range(4):
print(a[i]), 

输出:

geeks geeksforgeeks
1 2 3 4

0.0000
5
关注作者
收藏
评论(0)

发表评论

暂无数据
推荐帖子