30/09/2018, 19:29

Lỗi biên dịch python khi chạy với sublime text

Mình nhập bài 11 trong cuốn Learn python the hard way bằng Sublime text, khi chạy thì nó báo lỗi

print "How old are you ?",
age = raw_input()
print "How tall are you ?",
height = raw_input()
print "How much do you weight?",
weight = raw_input()

print "So, you're %r old, %r tall and %r heavy. " %(age, height, weight)

age = raw_input()
EOFError: EOF when reading a line
? [Finished in 0.0s with exit code 1]

Trong khi chạy ở IDLE hay Power shell thì không bị lỗi này

viết 21:34 ngày 30/09/2018

Bác thử làm như này xem:
http://stackoverflow.com/questions/17758782/python-eoferror-eof-when-reading-a-line

Quan viết 21:40 ngày 30/09/2018

Hãy sử dụng SublimeREPL nhé, nó sẽ chạy ở một cửa sổ biên dịnh riêng cho phép standard input.

Bài liên quan
0