摘要:
print() 函数 和 变量与赋值 num=100 print(num) F:\python3\python_3.8.3\python.exe E:/PycharmProjects/pythonProject/demon1/chap3/demo2.py 100 进程已结束,退出代码0 阅读全文
2022年10月5日 #
摘要:
# balance=1000 #银行卡的上的余额 money=input('请输入取款金额:') #输入取款金额 money=int(money) #能过类型转换机,将str类型转换成int类型 if money<=balance: #判断, 取款金额与银行卡上的余额进行的比较 balance=ba 阅读全文
摘要:
import os.path print('1.',os.path.abspath('demo13.py')) #获取文件或目录绝对路径 print('2.',os.path.exists('demo13.py'),os.path.exists('demo18.py')) #判断文件和目录是否存在 阅读全文
2022年10月4日 #
摘要:
#目录操作 #os模块是Python内置的与操作系统功能和文件系统相关的模块,该模块中的语句的执行结果通常与操作系统有关,在不同的操作系统上运行,得到的结果可能不一样。 #os模块与os.path模块用于对目录或文件进行操作 #os模块与操作系统相关的一个模块 import os os.system 阅读全文
摘要:
#with语句确保,不论是否运行错误都确保文件关闭, with open('a.txt','r') as file: print(file.read()) # MyContentMgr实现了特殊方法__enter__(),__exit__()称为该类对象遵守了上下文管理器协议该类对象的实例对象,称为 阅读全文
摘要:
# 读,输出 read(), read([size]) , readline(), readlines() file = open('a.txt','r') print('输出文本所有内容',file.read()) # 输出文本所有内容 file.close() file = open('a.tx 阅读全文
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. 阅读全文
摘要:
#pycharm 新建文件或其他文件默认为 UTF-8 格式,如果新建文件中有中文,就会读取失败,可把文件另存为其他格式(gbk) file=open('a.txt','r') #打开读取文件#需手动新建a.txt.文件 print(file.readline()) #输出读取文件内容 file.c 阅读全文
2022年9月26日 #