摘要:# calculate file size in KB, MB, GB def convert_bytes(size): """ Convert bytes to KB, or MB or GB :param size :return """ for x in ['bytes', 'KB', 'MB
阅读全文
摘要:FF=[[]] for i in range(0,10): kk = [] for k in range(0,10): if(k==0): kk.append(i) else: kk.append(k) #print(kk) FF.insert(i,kk) print(FF) # 打印列表 for
阅读全文