Python File isatty() 方法
python file isatty() 方法
isatty() 方法檢測文件是否連接到一個終端設(shè)備,如果是返回 true,否則返回 false。
語法
isatty() 方法語法如下:
fileobject.isatty();
參數(shù)
無
返回值
如果連接到一個終端設(shè)備返回 true,否則返回 false。
實例
以下實例演示了 isatty() 方法的使用:
#!/usr/bin/python # -*- coding: utf-8 -*- # 打開文件 fo = open("codebaoku.txt", "wb") print "文件名為: ", fo.name ret = fo.isatty() print "返回值 : ", ret # 關(guān)閉文件 fo.close()
以上實例輸出結(jié)果為:
文件名為: codebaoku.txt 返回值 : false
相關(guān)文章
- Python 教程
- Python for 循環(huán)語句
- Python continue 語句
- Python pass 語句
- Python Number 數(shù)字
- Python 日期和時間
- Python2 與 Python3?? 版本區(qū)別
- Python 數(shù)據(jù)結(jié)構(gòu)
- Python 矩陣
- Python 集合
- Python 鏈表
- Python 二叉樹
- Python 圖形
- Python 算法分析
- Python3 解釋器
- Python3 字典(Dictionary)
- Python3 if else 語句
- Python3 文件讀寫
- Python3 面向?qū)ο?/a>
- Python3 SMTP發(fā)送郵件