程式與日常
Python的print()不要印出新的一行(newline)的方式如下。
print()
把print()的keyword argument end傳入空字串即可。
end
例如下面的print('hello', end='')不會印出新行。
print('hello', end='')
print('hello', end='') # no newline print('world') # newline
執行結果如下
helloworld
張貼留言
沒有留言:
張貼留言