python文件命名的錯誤
阿新 • • 發佈:2018-10-31
print recent call import 錯誤 ddr traceback urn 文件命名 今天出現了一個錯誤:
D:\>python3 re.py Input a email addr: [email protected] Traceback (most recent call last): File "re.py", line 1, in <module> import re File "D:\re.py", line 12, in <module> print(is_valid_email(addr)) File "D:\re.py", line 5, in is_valid_email if re.match(re_str, addr): AttributeError: module ‘re‘ has no attribute ‘match‘
代碼如下:
import re
def is_valid_email(addr):
re_str = r‘^([a-zA-Z_.])@([a-zA-Z.].[com|cn|gov])‘
if re.match(re_str, addr):
return True
else:
return False
while (1):
addr = str(input(‘Input a email addr: ‘))
print(is_valid_email(addr))
明明有導入re模塊,但是卻沒有match方法。原來是因為我把python文件命名為re.py,與內置的re模塊重名導致。
python文件命名的錯誤