Python os.tcgetpgrp() 方法
python os.tcgetpgrp() 方法
os.tcgetpgrp() 方法用于回與終端fd(一個由os.open()返回的打開的文件描述符)關(guān)聯(lián)的進(jìn)程組。
語法
tcgetpgrp()方法語法格式如下:
os.tcgetpgrp(fd)
參數(shù)
- fd -- 文件描述符。
返回值
該方法返回進(jìn)程組。
實(shí)例
以下實(shí)例演示了 tcgetpgrp() 方法的使用:
#!/usr/bin/python # -*- coding: utf-8 -*- import os, sys # 顯示當(dāng)前目錄 print "當(dāng)前目錄 :%s" %os.getcwd() # 修改目錄到 /dev/tty fd = os.open("/dev/tty",os.o_rdonly) f = os.tcgetpgrp(fd) # 顯示進(jìn)程組 print "相關(guān)進(jìn)程組: " print f os.close(fd) print "關(guān)閉文件成功!!"
執(zhí)行以上程序輸出結(jié)果為:
當(dāng)前目錄 :/tmp 相關(guān)進(jìn)程組: 2670 關(guān)閉文件成功!!
相關(guān)文章
- Python pass 語句
- Python Number 數(shù)字
- Python 模塊
- Python 文件I/O
- Python 面向?qū)ο?/a>
- Python 網(wǎng)絡(luò)編程
- Python SMTP發(fā)送郵件
- Python 多線程
- Python IDE
- Python 二維數(shù)組
- Python 節(jié)點(diǎn)
- Python Deque
- Python3 教程
- Python3 數(shù)據(jù)類型
- Python3 運(yùn)算符
- Python3 輸入和輸出
- Python3 OS 文件/目錄方法
- Python3 作用域
- Python3 多線程
- Python3 MySQL 數(shù)據(jù)庫連接 - PyMySQL 驅(qū)動