gpt4 book ai didi

python - 如何将多行传递到剪贴板?

转载 作者:太空宇宙 更新时间:2023-11-03 15:12:31 25 4
gpt4 key购买 nike

有没有办法将多行文本发送到剪贴板?

我使用了以下命令但对我不起作用:

import os
text = """sample one \r\n sample two \r\n sample three"""
command = 'echo ' + text.strip() + '| clip'.
os.system(command)

我想要o/p作为

sample one

sample two

sample three

最佳答案

使用 clipboard module :

import clipboard
clipboard.copy("line1\nline2") # now the clipboard content will be string "line1\nline2"
clipboard.copy("line3") # add line3
text = clipboard.paste() # text will have the content of clipboard

是的,@Reman 说剪贴板复制命令会覆盖它,而不是追加。因此,让我们自己进行追加。

line = '\n'.join(line, new_line)
clipboard.copy(line)
text = clipboard.paste() # now all lines separated by newline will be on the clipboard.

关于python - 如何将多行传递到剪贴板?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24880400/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com