摘要: 昨日内容回顾 文件的读写模式 r with open(r'a.txt','r'encoding='utf8') as f: f.read() #只能读,不能写,文件不存在会报错 w with open(r'b.txt','w',enconding='utf8') as f: f.write() # 阅读全文
posted @ 2021-01-15 11:50 KaiLun 阅读(56) 评论(0) 推荐(0)
摘要: 昨日内容回顾 body内常见标签 # 标题标签 <h1></h1> <h2></h2> <h3></h3> <h4></h4> <h5></h5> <h6></h6> # 段落标签 <p></p> #换行和分割线 <br> <hr> 常见符号 &nbsp 空格 &amp &(真的&) &gt 大于 阅读全文
posted @ 2021-01-15 11:03 KaiLun 阅读(125) 评论(0) 推荐(0)