实现粘贴一行字竖着输出
def ns():
import pyperclip
while True:
s = input()
result = ''
for i in s[:-1]:
result += i + '\n'
result += s[-1]
pyperclip.copy(result)
本文来自博客园,作者:Hany47315,转载请注明原文链接:https://www.cnblogs.com/hany-postq473111315/p/14745084.html