黄色电影一区二区,韩国少妇自慰A片免费看,精品人妻少妇一级毛片免费蜜桃AV按摩师 ,超碰 香蕉

Python os.isatty() 方法

python os.isatty() 方法

python os 文件/目錄方法python os 文件/目錄方法

os.isatty() 方法用于判斷如果文件描述符fd是打開的,同時(shí)與tty(-like)設(shè)備相連,則返回true, 否則false。

 

語法

isatty()方法語法格式如下:

os.isatty()

 

參數(shù)

 

返回值

如果文件描述符fd是打開的,同時(shí)與tty(-like)設(shè)備相連,則返回true, 否則false。

 

實(shí)例

以下實(shí)例演示了 isatty() 方法的使用:

#!/usr/bin/python
# -*- coding: utf-8 -*-
import os, sys
# 打開文件
fd = os.open( "foo.txt", os.o_rdwr|os.o_creat )
# 寫入字符串
os.write(fd, "this is test")
# 使用 isatty() 查看文件
ret = os.isatty(fd)
print "返回值: ", ret
# 關(guān)閉文件
os.close( fd )

執(zhí)行以上程序輸出結(jié)果為:

返回值:  false

python os 文件/目錄方法python os 文件/目錄方法

下一節(jié):python os.lchflags() 方法

python 教程

相關(guān)文章