I'm using Python 3 and Pyperclip. Here is the code: import pyperclip text = pyperclip.paste() lines = text.split('\n') for i in range(len(lines)): last, ...
確定! 回上一頁