1 Star 0 Fork 0

Python程序设计/192223zpy

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
file.py 343 Bytes
一键复制 编辑 原始数据 按行查看 历史
192223张鹏宇 提交于 2020-04-22 22:00 . file
import os
path = "/Users/ponny/pytest/1922"
os.makedirs(path)
path1 = "/Users/ponny/pytest/1922/20192223.txt"
file = open(path1, 'w')
file.write("20192223 张鹏宇 python 成绩:90\n")
file.write("20192228 呵呵哒 python 成绩:90")
file.close()
file = open(path1,'r')
list = file.readlines()
for list in list:
print(list)
file.close()
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/python_programming/zpy192223.git
[email protected]:python_programming/zpy192223.git
python_programming
zpy192223
192223zpy
master

搜索帮助