Pyperclip have copy() and paste() methods to perform the operations. import pyperclip as pc x = "Data to be copied to clipboard" pc.copy(x) a = ...
確定! 回上一頁