因此,主要的疑问是,pyperclip模块可以使用Windows剪贴板中已经存在的文本,并使用它来例如打开www.test.com/这样的URL吗?或只能将信息发送到剪贴板。
还是有一种更简单的方法来实现此目的:使用剪贴板中存储的信息编写程序。
请查看我的代码:
import pyperclip, webbrowser, time
pyperclip.copy('')
plus = pyperclip.paste()
url = 'http://ww.www.com/' + plus
webbrowser.open_new(url)
谢谢
最佳答案
似乎只有使用tkinter模块才有可能:
必须如下所示:
import webbrowser
import tkinter as tk
root = tk.Tk()
# keep the window from showing
root.withdraw()
# read the clipboard
x = root.clipboard_get()
url = 'test.com' + x
webbrowser.open_new(url)
关于python - python和pyperclip问题使用剪贴板,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/35437388/