AdSense

網頁

2021/2/19

Python print()不要印出新行 print no newline

Python的print()不要印出新的一行(newline)的方式如下。

print()keyword argument end傳入空字串即可。

例如下面的print('hello', end='')不會印出新行。

print('hello', end='')  # no newline
print('world')  # newline

執行結果如下

helloworld


沒有留言:

AdSense