What does write mean in python

小老鼠
Release: 2024-03-07 10:01:11
Original
1076 people have browsed it

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
Copy after login

3. Define a specified string and use the write method to write it to the file.

str = "亿速云"fo.write( str )
Copy after login

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()
Copy after login

The output result is:

test.txt #文件名
Copy after login

View the file content:

cat test.txt #查看文件命令
Copy after login

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!

Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!