Python で文字列をクリップボードにコピーする
Windows アプリケーションを開発する場合、ユーザーが生成した文字列をクリップボードにコピーすることが必要になることがよくあります。 Python で tkinter を使用してこれを実現する方法は次のとおりです。
解決策:
幸いなことに、Python には tkinter と呼ばれる組み込み GUI フレームワークが付属しており、これによりクリップボードの操作が簡素化されます。このフレームワークを使用したソリューションは次のとおりです。
from tkinter import Tk # in Python 2, use "Tkinter" instead # Create a Tkinter object (this stays hidden) r = Tk() r.withdraw() # Clear the clipboard (just in case it already contains something) r.clipboard_clear() # Append the desired text to the clipboard r.clipboard_append('i can has clipboardz?') # Update the clipboard (ensuring it persists even after closing the window) r.update() # Destroy the Tkinter object r.destroy()
Tkinter の利点:
以上がPython を使用して文字列を Windows クリップボードにコピーするにはどうすればよいですか?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。