蓝绝

博客园 首页 新随笔 联系 订阅 管理
上一页 1 ··· 11 12 13 14 15 16 17 18 19 ··· 24 下一页

2022年10月5日 #

摘要: print() 函数 和 变量与赋值 num=100 print(num) F:\python3\python_3.8.3\python.exe E:/PycharmProjects/pythonProject/demon1/chap3/demo2.py 100 进程已结束,退出代码0 阅读全文
posted @ 2022-10-05 22:09 蓝绝 阅读(34) 评论(0) 推荐(0) 编辑

摘要: # balance=1000 #银行卡的上的余额 money=input('请输入取款金额:') #输入取款金额 money=int(money) #能过类型转换机,将str类型转换成int类型 if money<=balance: #判断, 取款金额与银行卡上的余额进行的比较 balance=ba 阅读全文
posted @ 2022-10-05 21:57 蓝绝 阅读(44) 评论(0) 推荐(0) 编辑

摘要: import os.path print('1.',os.path.abspath('demo13.py')) #获取文件或目录绝对路径 print('2.',os.path.exists('demo13.py'),os.path.exists('demo18.py')) #判断文件和目录是否存在 阅读全文
posted @ 2022-10-05 21:38 蓝绝 阅读(33) 评论(0) 推荐(0) 编辑

2022年10月4日 #

摘要: #目录操作 #os模块是Python内置的与操作系统功能和文件系统相关的模块,该模块中的语句的执行结果通常与操作系统有关,在不同的操作系统上运行,得到的结果可能不一样。 #os模块与os.path模块用于对目录或文件进行操作 #os模块与操作系统相关的一个模块 import os os.system 阅读全文
posted @ 2022-10-04 20:35 蓝绝 阅读(53) 评论(0) 推荐(0) 编辑

摘要: #with语句确保,不论是否运行错误都确保文件关闭, with open('a.txt','r') as file: print(file.read()) # MyContentMgr实现了特殊方法__enter__(),__exit__()称为该类对象遵守了上下文管理器协议该类对象的实例对象,称为 阅读全文
posted @ 2022-10-04 20:02 蓝绝 阅读(12) 评论(0) 推荐(0) 编辑

摘要: # 读,输出 read(), read([size]) , readline(), readlines() file = open('a.txt','r') print('输出文本所有内容',file.read()) # 输出文本所有内容 file.close() file = open('a.tx 阅读全文
posted @ 2022-10-04 18:59 蓝绝 阅读(41) 评论(0) 推荐(0) 编辑

2022年10月3日 #

摘要: file=open('a.txt','w') #a.txt 如果没有就会创建新的文件 file.write('python') #文件写入python file.close() file=open('a.txt','a') # a 文件追加内容 file.write('python1') file. 阅读全文
posted @ 2022-10-03 22:05 蓝绝 阅读(46) 评论(0) 推荐(0) 编辑

摘要: #pycharm 新建文件或其他文件默认为 UTF-8 格式,如果新建文件中有中文,就会读取失败,可把文件另存为其他格式(gbk) file=open('a.txt','r') #打开读取文件#需手动新建a.txt.文件 print(file.readline()) #输出读取文件内容 file.c 阅读全文
posted @ 2022-10-03 21:03 蓝绝 阅读(29) 评论(0) 推荐(0) 编辑

摘要: 阅读全文
posted @ 2022-10-03 20:17 蓝绝 阅读(20) 评论(0) 推荐(0) 编辑

2022年9月26日 #

摘要: 阅读全文
posted @ 2022-09-26 21:24 蓝绝 阅读(32) 评论(0) 推荐(0) 编辑

上一页 1 ··· 11 12 13 14 15 16 17 18 19 ··· 24 下一页