读写文件 1
作者:
leo
2018-10-03
编辑:
\n 换行命令 ¶
定义 text
为字符串, 并查看使用 \n
和不适用 \n
的区别:
text='This is my first test. This is the second line. This the third '
print(text) # 无换行命令
"""
This is my first test. This is the second line. This the third
"""
text='This is my first test.\nThis is the second line.\nThis the third line'
print(text) # 输入换行命令\n,要注意斜杆的方向。注意换行的格式和c++一样
"""
This is my first test.
This is the second line.
This the third line
"""
open 读文件方式 ¶
使用 open
能够打开一个文件, open
的第一个参数为文件名和路径 ‘my file.txt’, 第二个参数为将要以什么方式打开它, 比如 w
为可写方式.
如果计算机没有找到 ‘my file.txt’ 这个文件, w
方式能够创建一个新的文件, 并命名为 my file.txt
my_file=open('my file.txt','w') #用法: open('文件名','形式'), 其中形式有'w':write;'r':read.
my_file.write(text) #该语句会写入先前定义好的 text
my_file.close() #关闭文件
\t tab 对齐 ¶
使用 \t
能够达到 tab
对齐的效果:
text='\tThis is my first test.\n\tThis is the second line.\n\tThis is the third line'
print(text) #延伸 使用 \t 对齐
"""
This is my first test.
This is the second line.
This is the third line
"""
分享到:
如果你觉得这篇文章或视频对你的学习很有帮助, 请你也分享它, 让它能再次帮助到更多的需要学习的人.
如果你也想支持 leo Python 并看到更好的教学内容, 赞助他一点点, 作为鼓励他继续开源的动力.