Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
重複の可能性: raw_inputとtimeout
raw_input()ユーザー入力を待ちます。数秒待ってからどうやって動かすのですか?
raw_input()
考えられるオプションの 1 つ:
import select, sys r, w, x = select.select([sys.stdin], [], [], 3)
これは約 3 秒間ブロックされます - 存在するデータは後でブロックされrます。
r