Python 3 equivalence of find() -
i've converted python 2 program python 3, in following code:
te=find(p,']')
i'm getting following error:
nameerror: global name 'find' not defined
i'm assuming find function not built-in in python 3? equivalence of code in python 3? please me out , thank in advance.
that code doesn't work python 2.
are looking p.find("]")
?
Comments
Post a Comment