标签: python-3.x
我已将Python 2程序转换为Python 3, 但是在以下代码中:
te=find(p,']')
我收到以下错误:
NameError: global name 'find' is not defined
我假设在Python 3中没有内置find函数? 我的代码在Python 3中的等价性是什么? 请帮帮我,并提前感谢你。
答案 0 :(得分:2)
该代码甚至不能与python 2一起使用。
p.find("]")