m=re.match('bat,'bat').group()
给出name error:name 're' is not defined
了它在哪些版本的python中工作
b='bat|bit'
m=re.search(b,'bit)
name Error:name 're' is not defined`
所以我认为 re 模块在我的 python 版本中不起作用,我已经在 UBUNTU 中尝试过它也显示相同的错误。我有活动状态 python。
m=re.match('bat,'bat').group()
给出name error:name 're' is not defined
了它在哪些版本的python中工作
b='bat|bit'
m=re.search(b,'bit)
name Error:name 're' is not defined`
所以我认为 re 模块在我的 python 版本中不起作用,我已经在 UBUNTU 中尝试过它也显示相同的错误。我有活动状态 python。