1
我想使用下面的代碼將帶有換行符的文本複製到剪貼板。用換行符將文本複製到剪貼板:Python
import pyperclip
numbers=''
for i in range(200):
numbers = numbers + str(i) + '\n'
pyperclip.copy(numbers)
執行後剪貼板應包含以下內容:
0
1
2
.
.
200
但我運行程序後在記事本中粘貼。 我看到
....200
所有在一行。 :( 我使用Python 3.6.1在Windows 10
嘗試使用''\ r \ n'' –