简体   繁体   中英

Why can't I import the re module?

I wanted to import the re module to do some web scraping.
I wrote down the 'import re' function and got this message:

Traceback (most recent call last):
  File "/Users/willardsun/PycharmProjects/untitled/re.py", line 1, in <module><br>
    import re<br>
  File "/Users/willardsun/PycharmProjects/untitled/re.py", line 2, in <module><br>
    re.compile<br>
AttributeError: partially initialized module 're' has no attribute 'compile' (most likely due to a circular import)

What does this exactly mean? I checked the binary skeleton and there was no re module. If the problem is due to this, then how do I install the module back? Thanks.

I think you are trying import re module in a .py file named 're.py'.
In this way, a name clash occurs.So why not change the name of the .py file into my_re.py?

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM