摘要:
今天使用python的csv,将本地表格文件转换成dataframe,然后各种编码报错,是因为源文件格式保留了太多杂七杂八的功能标记,不是纯正的csv,只需要最原始的配方,才能转换出最纯正的dataframe,原始的csv使用这段代码完美打开 import csvdef remove_nul_cha 阅读全文
posted @ 2023-12-08 16:07
ljn19961215
阅读(11)
评论(0)
推荐(0)
摘要:
主程序 # 创建一个队列对象q = queue.Queue()qq = queue.Queue()thread1 = Tkui(q,qq)# thread2 = MyThread("Thread 2")# 启动线程thread1.start()while True: # 从队列中获取数据 data 阅读全文
posted @ 2023-12-08 11:19
ljn19961215
阅读(56)
评论(0)
推荐(0)
摘要:
sap的登录操作可复用代码 class Chongxiao: def __init__(self, username, password): self.username = username self.password = password def PR3_Login(self,username, 阅读全文
posted @ 2023-12-08 11:14
ljn19961215
阅读(29)
评论(0)
推荐(0)