What does tty device means ? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

What does tty device means ?

The python interpreter operates somewhat like the Unix shell: when called with standard input connected to a tty device, it reads and executes commands interactively; when called with a file name argument or with a file as standard input, it reads and executes a script from that file.

3rd Jun 2021, 6:03 AM
lisa
2 Answers
+ 1
It is the command line interface for the Unix based systems.You have to type the command to run your python script. >> python file_name
3rd Jun 2021, 6:06 PM
HBhZ_C
HBhZ_C - avatar
0
tty stand for TeleTYpewriter: that's the common name used to talk about virtual console/terminal wich you can access on unix/linux systems (I guess that apply too to OSx as based on unix/linux architecture -- kind of proprietary linux distribution) that's also a unix command related to outputing to terminal/console: https://en.m.wikipedia.org/wiki/Tty_(unix)
3rd Jun 2021, 6:21 AM
visph
visph - avatar