Home  >  Article  >  Backend Development  >  What does write mean in python

What does write mean in python

小老鼠
小老鼠Original
2024-03-07 10:01:111101browse

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.

What does write mean in python

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!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn