V2EX › Python
[问题求助-程序运行错误]“unexpected EOF while parsing”,几乎按照教材上的代码写的,为毛还会出现这种错误/(ㄒoㄒ)/~~
By mrdongzhijie at 2017 年 9 月 26 日 · 20594 次点击catNames = []
while True:
print('please enter the name of your cat:')
name = str(input())
if name == str():
break
catNames = catNames + [name]
print('the cas name are:' + catNames )
——————————————————————————
报错:
Traceback (most recent call last):
File "/Users/mrdongzhijie/Python/statisc-c4.py", line 5, in <module>
name = input()
File "<string>", line 0
^
SyntaxError: unexpected EOF while parsing
——————————————————————
附加问题:
为毛代码已经将输入转换为 str,结果在交互环境输入字符时还要加‘’,否则就要报错?
while True:
print('please enter the name of your cat:')
name = str(input())
if name == str():
break
catNames = catNames + [name]
print('the cas name are:' + catNames )
——————————————————————————
报错:
Traceback (most recent call last):
File "/Users/mrdongzhijie/Python/statisc-c4.py", line 5, in <module>
name = input()
File "<string>", line 0
^
SyntaxError: unexpected EOF while parsing
——————————————————————
附加问题:
为毛代码已经将输入转换为 str,结果在交互环境输入字符时还要加‘’,否则就要报错?
第 1 条附言 · 2017 年 9 月 27 日
[已解决。Mac 终端默认为 2.7 版本的 Python,需要手动制定 Python3]
第 2 条附言 · 2017 年 9 月 27 日
感谢各位。
12 条回复 • 2017-11-16 23:10:58 +08:00
|
1
cute 2017 年 9 月 26 日 raw_input
|
|
2
ysc3839 2017 年 9 月 26 日 via Android
先问一下,你用的 Python 是什么版本?教材上说的是什么版本?
|
|
3
F281M6Dh8DXpD1g2 2017 年 9 月 26 日
你需要游标卡尺
|
|
4
mrdongzhijie OP @liprais 从 sublime 复制过来的,缩进是没问题的啊 ==
|
|
5
mrdongzhijie OP @ysc3839 用的 3.6 教材上估计用的 3.4. 反正都是 3.x 应该不会是版本问题吧
|
|
6
mrdongzhijie OP @cute 3.x 版本不是整合了 raw_input( ) 和 input ()嘛?
|
|
7
kris7i 2017 年 9 月 26 日
@mrdongzhijie cute 的正解
|
|
8
fisher335 2017 年 9 月 26 日 via iPhone
重新用手打意边,缩进的问题
|
|
9
mrdongzhijie OP @fisher335 THX
|
|
10
mrdongzhijie OP @kris7i O(∩_∩)O
|
|
11
zhusimaji 2017 年 9 月 29 日
论 pep8 的重要性
|
|
12
mrdongzhijie OP @zhusimaji 我错了……复制过程出错……求大神轻拍==
|
推荐学习书目
› Learn Python the Hard Way
Python Sites
› PyPI - Python Package Index
› http://diveintopython.org/toc/index.html
› Pocoo
值得关注的项目
› PyPy
› Celery
› Jinja2
› Read the Docs
› gevent
› pyenv
› virtualenv
› Stackless Python
› Beautiful Soup
› 结巴中文分词
› Green Unicorn
› Sentry
› Shovel
› Pyflakes
› pytest
Python 编程
› pep8 Checker
Styles
› PEP 8
› Google Python Style Guide
› Code Style from The Hitchhiker's Guide