# Python CodeRecipe|isatty()の使い方
❮ Home ❮ File Methods
# isatty()の例1
f = open("demofile.txt", "r")
print(f.isatty())
# isatty()の定義及び使い方
isatty()関数は ファイルストリームが対話型 (たとえば、端末デバイスに接続されている) の場合は、true。
# isatty()の構文
file.isatty()
# isatty()の引数
パラメータなし
❮ Home ❮ File Methods