问:我完全在控制台(python)中放置了此列表:list('hello'),但收到一条消息:TypeError:'str'对象不可调用。
答:list('hello')是合法的语法。在交互式外壳中运行:
$ 蟒蛇
Python 3.4 。0 (默认值, 2015年6 月19 日, 14 :20 :21 )
[ GCC 4.8 。linux上的2 ]
键入 “ help” , “ copyright” , “ credits” 或 “ license” 以获取 更多 信息。
>>> 列表('hello' )
[ 'h' , 'e' , 'l' , 'l' 'o' ]