摘要:import xlwings as xw tfile="test.xlsx" newfile="new.xlsx" app = xw.App(visible=False, add_book=False) app.display_alerts = False app.screen_updating =
阅读全文
|
04 2021 档案
摘要:import xlwings as xw tfile="test.xlsx" newfile="new.xlsx" app = xw.App(visible=False, add_book=False) app.display_alerts = False app.screen_updating =
阅读全文
摘要:continue表示跳过后面的程序,重新循环,而pass表示站位,什么也不做,后面的代码(else之前)还是会执行, a = 'python' i = 2 for element in a: if element == 'y': pass i = 3 else: print(element+str(
阅读全文
摘要:大人的世界,比小孩的复杂,每个人有一个自己的世界,在这么多复杂的交错里面,没有统一的标准,要怎么过完这一生。
阅读全文
摘要:刷个开发版还要申请资格。要么去淘宝买资格的账号,要么用其他方法: 包21.4.15,直接有有防闪烁功能下载地址:https://bigota.d.miui.com/21.4.15/miui_ALIOTH_21.4.15_8f3a6c70dc_11.0.zip 测试从稳定版12.0.8.0刷到21.4
阅读全文
摘要:sfc /scannowDISM.exe /Online /Cleanup-image /Restorehealth
阅读全文
摘要:def readf(file): t0 = time.time() data=pd.read_csv(file,low_memory=False,encoding='gbk' #,nrows=100 ) t1 = time.time() print('耗时%0.3f秒钟'%(t1-t0)) retu
阅读全文
|