with urllib.request.urlopen("https://gall.dcinside.com/board/lists?id=programming") as response:

    html = response.read()

    soup = BeautifulSoup(html, 'html.parser')

print(soup.prettify())


시키는대로 햇는데

 왜 아무것도 안뜨냐