RosettaCodeData/Task/Check-input-device-is-a-terminal/Python/check-input-device-is-a-terminal.py

6 lines
124 B
Python
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
from sys import stdin
if stdin.isatty():
print("Input comes from tty.")
else:
print("Input doesn't come from tty.")