キーボード入力を文字列と比較しようとしています:
import sys
# read from keyboard
line = sys.stdin.readline()
if line == "stop":
print 'stop detected'
else:
print 'no stop detected'
キーボードで「stop」と入力してEnterキーを押すと、プログラムに「stopdetected」と出力されますが、常に「nostopdetected」と出力されます。どうすればこれを修正できますか?