Tkinter自带的剪贴板功能

电脑技术 电脑技术 1000 人阅读 | 0 人回复 | 2022-04-06

马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。

您需要 登录 才可以下载或查看,没有账号?立即注册

x
''' tk_clipboard_action.py
use Tkinter to get access to the clipboard/pasteboard
tested with Python27/33
'''

try:
    # Python2
    import Tkinter as tk
except ImportError:
    # Python3
    import tkinter as tk

root = tk.Tk()
# keep the window from showing
root.withdraw()

text = "Donnerwetter"
root.clipboard_clear()
# text to clipboard
root.clipboard_append(text)
# text from clipboard
clip_text = root.clipboard_get()

print(clip_text)  # --> Donnerwetter
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则