2015年10月12日 星期一

python 3.0 print() 如何不換行

在 print() 加入 end = "" 參數即可

example:

b = [1,2,3,4,6]
for item in b:
    print(item,end="")

沒有留言:

張貼留言