2020年11月28日

python习题

摘要: 1、输出等边三角形 for i in range(1, 6): # 控制行 # print("*") # 一个for控制空格的输出 # 一个for控制"*"输出 for j in range(1, 6 - i): # 控制空格 print(" ", end='') # print("") for k 阅读全文

posted @ 2020-11-28 22:23 Tester十点半 阅读(109) 评论(0) 推荐(0) 编辑

python异常处理

摘要: # 异常处理&调试 import os try: # 捕获错误 os.mkdir("Alisa") except Exception as c: # 捕获所有错误 print("抓取成功,错误为{}".format(c)) file = open("error.txt", "a+", encodin 阅读全文

posted @ 2020-11-28 17:12 Tester十点半 阅读(62) 评论(0) 推荐(0) 编辑

python文件操作

摘要: 1、文件操作 # file txt xml html file = open("python11.txt", "r+",encoding='utf-8') # 中文 # mode 打开文件的模式,默认只读 # r只读 w 只写 a追加 # r+可读可写,先写的话,从头开始覆盖写,读写跟着光标走 # 阅读全文

posted @ 2020-11-28 15:14 Tester十点半 阅读(62) 评论(0) 推荐(0) 编辑

导航