[Python] 웹에서 XML 또는 HTML 등의 텍스트 기반의 데이터 출력하기 2월 26, 2024 공유 링크 만들기 Facebook X Pinterest 이메일 기타 앱 코드import urllib.request url = "https://bddung1014.blogspot.com/" res = urllib.request.urlopen(url) data = res.read() text = data.decode("utf-8") print(text) 결과값 댓글
댓글
댓글 쓰기