Write in python is a method of writing a string into a file. The syntax format is "fileObject.write([str])", where str refers to the string to be written to the file.
write in python is a method of writing strings into files. The syntax format is: "fileObject.write([str])", here str Refers to the string to be written to the file; note that the written string content is stored in the buffer before the file is closed or the buffer is refreshed, and the string you write cannot be seen at this time.
Specific steps:
1. First open the python editor and create a new python project.
2. Use the open method to open a file in the python project
import random
3. Define a specified string and use the write method to write it to the file.
str = "亿速云"fo.write( str )
The complete example code is as follows:
#!/usr/bin/python# -*- coding: UTF-8 -*-#www.yisu.com# 打开文件fo = open("test.txt", "w")print "文件名为: ", fo.namestr = "亿速云"fo.write( str )# 关闭文件fo.close()
The output result is:
test.txt #文件名
View the file content:
cat test.txt #查看文件命令
The above is the detailed content of What does write mean in python. For more information, please follow other related articles on the PHP Chinese website!