Python close input timeout

Code examples

5
0

python close input timeout

import sys, select
timeout = 5
print(f"You have {timeout} seconds to make your move: ")
i, o, e = select.select([sys.stdin], [], [], timeout)

if (i) :
    entry = sys.stdin.readline().strip()
else :
    entry = 'dEfAuLt vAlUe'

print(f'Variable "entry" is set to "{entry}"')

Similar pages

Similar pages with examples

In other languages

This page is in other languages

Русский
..................................................................................................................
Italiano
..................................................................................................................
Polski
..................................................................................................................
Română
..................................................................................................................
한국어
..................................................................................................................
हिन्दी
..................................................................................................................
Français
..................................................................................................................
Türk
..................................................................................................................
Česk
..................................................................................................................
Português
..................................................................................................................
ไทย
..................................................................................................................
中文
..................................................................................................................
Español
..................................................................................................................
Slovenský
..................................................................................................................
Балгарскі
..................................................................................................................
Íslensk
..................................................................................................................