logo

Python File Isatty() Method


Show

Description

Python file method isatty() returns True if the file is connected (is associated with a terminal device) to a tty(-like) device, else False.

Syntax

Following is the syntax for isatty() method:

fileObject.isatty();

Parameters

  • NA

Return Value

This method returns true if the file is connected (is associated with a terminal device) to a tty(-like) device, else false.

Example

The following example shows the usage of close() method.

#!/usr/bin/python

# Open a file
fo = open("foo.txt", "wb")
print "Name of the file: ", fo.name

ret = fo.isatty()
print "Return value : ", ret

# Close opend file
fo.close()

When we run the above program, it produces the following result:

Name of the file:  foo.txt
Return value :  False

Here at Intellinuts, we have created a complete Python tutorial for Beginners to get started in Python.