一个竖排文本转横排小项目
import pyperclipdef get_os():
areet = []
with open(file=r"C:\Users\ssx\Desktop\竖排.txt") as file_object:
for line in file_object:
areet.append(line.rstrip())
areets = #去掉txt里可能存在的空行
print("横排文字数量:"+'',int(len(areets)))
list2 = ' '.join(areets)
pyperclip.copy(list2)
print(pyperclip.paste())
print("已自动复制上面内容,ctrl+v即可粘贴")
get_os()
进来学习,谢谢 这个应该在excel有这个功能,感谢分享 确实我有过这种烦恼{:301_973:} daymissed 发表于 2022-3-3 11:34
这个应该在excel有这个功能,感谢分享
确实,excel粘贴转置也可以实现{:301_1008:}
页:
[1]