Process finished with exit code-1073741819 (0xC0000005)

pycharm

import requests
from bs4 import BeautifulSoup

url = "https://qd.lianjia.com/zufang/"
response = requests.get(url)
soup = BeautifulSoup(response.text, "lxml")
print(soup)

exit abnormally immediately after running the program:

Process finished with exit code -1073741819 (0xC0000005)

Please give me some advice!

Mar.16,2021

how to solve it

Menu