摘要: (13条消息) Python进制转换详细介绍_Wonderful-CSDN博客_python进制转换 阅读全文
posted @ 2022-02-22 09:55 小鱼小鱼hi 阅读(15) 评论(0) 推荐(0) 编辑
摘要: python格式化输出之format用法 - lovejh - 博客园 (cnblogs.com) 阅读全文
posted @ 2022-02-22 09:54 小鱼小鱼hi 阅读(20) 评论(0) 推荐(0) 编辑
摘要: python中os.listdir( )函数读取文件夹 - Rogn - 博客园 (cnblogs.com) import os path = "./Pictures/images/" files = os.listdir(path) #os.listdir() 方法用于返回指定的文件夹包含的文件或 阅读全文
posted @ 2022-02-18 15:19 小鱼小鱼hi 阅读(278) 评论(0) 推荐(0) 编辑
摘要: 1、== #完全匹配 if wcdma_band == "B1:...:BN" : print("wcdma_band返回值正常") else : print(" >Info: wcdma_band返回值异常") raise Exception(" >Problem: Fail to recive 阅读全文
posted @ 2022-02-18 13:45 小鱼小鱼hi 阅读(112) 评论(0) 推荐(0) 编辑
摘要: 1、> 、>=、<、<=: if number >= 10000 and number >= 30000: print ("pass") 2、range()函数: if number in range(10000, 30001) ##这里的number注意要是int类型,在脚本里很容易出错 阅读全文
posted @ 2022-02-15 21:17 小鱼小鱼hi 阅读(573) 评论(0) 推荐(0) 编辑
摘要: (13条消息) python中str,int,list,list(str),list(int)的相互转换_静幽水-CSDN博客_list转int python 1、如果是单个str与int类型转换: (1)强制转换: int转成string,函数int(string) string转成int,函数s 阅读全文
posted @ 2022-02-15 21:00 小鱼小鱼hi 阅读(3801) 评论(0) 推荐(0) 编辑
摘要: Python中非0为true,0为flase -1在python中表示true 阅读全文
posted @ 2022-02-15 19:21 小鱼小鱼hi 阅读(71) 评论(0) 推荐(0) 编辑
摘要: 1、 在列表后追加元素 .append() d=[] for a in range(1,5): for b in range(1,5): for c in range(1,5): if (a!=b) and (a!=c) and (c!=b): totle =a*100 + b*10 +c d.ap 阅读全文
posted @ 2022-02-12 17:12 小鱼小鱼hi 阅读(34) 评论(0) 推荐(0) 编辑
摘要: 1、指定路径、log文件名字 import serial import time import os #对文件、文件夹的操作需要涉及到os模块 DEBUG_LOG = "" TIME = "" TIME = time.strftime("%Y-%m-%d_%H_%M_%S", time.localt 阅读全文
posted @ 2022-01-25 20:51 小鱼小鱼hi 阅读(174) 评论(0) 推荐(0) 编辑
摘要: python 实现创建文件夹和创建日志文件的方法_python_脚本之家 (jb51.net) 1、python中对文件、文件夹(文件操作函数)的操作需要涉及到os模块和shutil模块。 得到当前工作目录,即当前Python脚本工作的目录路径: os.getcwd() 返回指定目录下的所有文件和目 阅读全文
posted @ 2022-01-25 20:50 小鱼小鱼hi 阅读(96) 评论(0) 推荐(0) 编辑