为什么python编译fourth = raw.input(‘Year: ‘)[3]时会报错

最近在学习Python,我用的是教材是:Python基础教程(第二版)作者是[挪]Magnus Lie Hetland 由司维 增军崴 谭颖华翻译。我现在使用的Python版本为:Python 3.8.5。
在学习第二章列表的时候发现用python编译
fourth = raw.input('Year: ')[3]时报错了,编译器提示Traceback (most recent call last): File “<pyshell#14>”, line 1, in fourth = raw.input('Year: ')[3] NameError: name ‘raw’ is not defined
在网上没搜到答案,倒是看到有的人在使用Python2.7时就出现这个问题了。我尝试把下划线改为点 . 结果不起作用,接着我直接把raw和下划线去掉时,发现可以运行了,以下是演示过程:

>>> fourth = raw_input('Year: ')[3]
Traceback (most recent call last):
  File "<pyshell#13>", line 1, in <module>
    fourth = raw_input('Year: ')[3]
NameError: name 'raw_input' is not defined
>>> fourth = raw.input('Year: ')[3]
Traceback (most recent call last):
  File "<pyshell#14>", line 1, in <module>
    fourth = raw.input('Year: ')[3]
NameError: name 'raw' is not defined
>>> fourth = input('Year: ')[3]
Year: 2006
>>> fourth
'6'

可能是由于作者的书籍版本比较老,他原来的算法在新版本软件上已经不能运行了。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值