6 lines
124 B
Python
6 lines
124 B
Python
|
|
from sys import stdin
|
||
|
|
if stdin.isatty():
|
||
|
|
print("Input comes from tty.")
|
||
|
|
else:
|
||
|
|
print("Input doesn't come from tty.")
|