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)


暂无数据
推荐帖子
0条评论
0条评论
0条评论