📌  相关文章
📜  pyqt5如何查看剪贴板是否为空 - Python代码示例

📅  最后修改于: 2022-03-11 14:47:03.936000             🧑  作者: Mango

代码示例1
# the following prints if clipboard is empty
if QApplication.clipboard().text():
    print("Clipboard is NOT empty")
else:
    print("Clipboard is empty")