Python os.write() 方法

返回上一级

os.write() 方法用于写入字符串到文件描述符 fd 中. 返回实际写入的字符串长度

只有在 Uninx 系统下有用,Windows 下无效

导入模块

import os

语法

os.write(fd, str)

参数

参数 说明
fd 文件描述符
str 写入的字符串

返回值

返回写入的实际位数

范例

下面的代码演示了 os.write() 方法的简单使用

#!/usr/bin/python
# -*- coding: UTF-8 -*-

import os, sys

# 打开文件
fd = os.open("demo.txt",os.O_RDWR|os.O_CREAT)

# 写入字符串
ret = os.write(fd,"This is twle.cn site")

# 输入返回值
print "写入的位数为: "
print  ret

print "写入成功"

# 关闭文件
os.close(fd)
print "关闭文件成功!!"

运行以上 Python 代码,输出结果如下

$ python main.py 
写入的位数为: 
20
写入成功
关闭文件成功!!
(python)

返回上一级

Python2 基础教程

关于   |   FAQ   |   我们的愿景   |   广告投放   |  博客

  简单教程,简单编程 - IT 入门首选站

Copyright © 2013-2022 简单教程 twle.cn All Rights Reserved.