发布网友 发布时间:2022-04-19 03:20
共2个回答
热心网友 时间:2022-04-19 04:49
你的截图中有提示符>>>,是python交互模式吗?追答是否使用了交互模式?
我的执行结果如下:
$ python
>>> s = raw_input('hehe:')
hehe:sdf
>>> if not s.isdigit():
... print 'hehe'
...
hehe
>>>
热心网友 时间:2022-04-19 06:07
默认输入的为字符串,int强转下