1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 | #!/usr/bin/python # -*- coding: UTF-8 -*- import datetime #时间 time_begin = "8:00" time_over = "22:00" #函数名 读取txt中指定参数内容 #函数输入 # path_txt txt文件地址 # canshu 要从txt读取的内容 # fengefu 参数名字和值的分隔符号 默认 - #函数输出 # 返回字符型结果 def readtxt(path_txt,canshu): #/home/pi/Desktop/info fengefu = "-" f = open (path_txt, mode = 'r+' , encoding = 'utf-8' ) # 打开txt文件,以‘utf-8’编码读取 lines = f.readlines() # 以行的形式进行读取文件 for line in lines: a = line.strip().split(fengefu) # x.strip()#除去每行的换行符 按照:分割 b = a[ 0 : 1 ] # list--str c = "".join(b).strip() # 去除空格 if c = = canshu: b = a[ 1 : 2 ] # 这是选取需要读取的位数 c = "".join(b).strip() # 去除空格 #print(c) return c f.close() def main(): #读取开始时间 字符型 数字需要转化 int() time_begin = readtxt( "/home/pi/Work/WorkPlace/python/2waibao/2face_lab/info" , "time_begin" ) print (time_begin) #读取结束时间 time_over = readtxt( "/home/pi/Work/WorkPlace/python/2waibao/2face_lab/info" , "time_over" ) print (time_over) #获取当前和时间 now = datetime.datetime.now().strftime( "%H:%M" ) print ( "当前时间:" + now) #比较是否在时间段内 if time_begin < now < time_over: print ( "在此区间中" ) else : print ( "不在此区间中" ) main() |
其他使用
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 | #统计行数 def counttxt( self ,path_txt): fp = open (path_txt, mode = 'r+' , encoding = 'utf-8' ) liness = fp.readlines() num = 0 for line in liness: num + = 1 fp.close() print (num) return num #指定行写入一行 def write_linetxt( self ,path_txt,canshu): fp = open (path_txt, mode = 'r+' , encoding = 'utf-8' ) liness = fp.readlines() lines = [] for line in liness: lines.append(line) fp.close() print ( len (lines)) lines.insert( 0 , canshu + "\n" ) # 在第二行插入 fp = open (path_txt, mode = 'w+' , encoding = 'utf-8' ) for line in lines: fp.writelines(line) fp.close() #最后一行插入一行 def writetxt( self ,path_txt,canshu): fp = open (path_txt, mode = 'a' , encoding = 'utf-8' ) fp.write( "\n" + canshu) fp.close() |
分类:
树莓派
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· go语言实现终端里的倒计时
· 如何编写易于单元测试的代码
· 10年+ .NET Coder 心语,封装的思维:从隐藏、稳定开始理解其本质意义
· .NET Core 中如何实现缓存的预热?
· 从 HTTP 原因短语缺失研究 HTTP/2 和 HTTP/3 的设计差异
· 分享一个免费、快速、无限量使用的满血 DeepSeek R1 模型,支持深度思考和联网搜索!
· 使用C#创建一个MCP客户端
· ollama系列1:轻松3步本地部署deepseek,普通电脑可用
· 基于 Docker 搭建 FRP 内网穿透开源项目(很简单哒)
· 按钮权限的设计及实现
2018-01-05 Arduino 433 自定义接受
2018-01-05 Arduino 433 自定义发射