python 프로 그래 밍 빠 른 시작 제1 1 장 실천 항목 답안

11.3 2048
2048 은 화살 표를 통 해 위, 아래, 왼쪽, 오른쪽으로 미끄러져 슬라이더 를 합 친 간단 한 게임 이다.실제로 '상하 좌우' 모드 를 한 번 반복 해 상당히 높 은 점 수 를 받 을 수 있다.프로그램 을 만 들 고 엽 니 다.http://gabrielecirulli.github.io/2048/위의 게임, 상하 좌우 버튼 을 계속 보 내 고 자동 으로 게임 을 합 니 다.
from selenium import webdriver
from selenium.webdriver.common.keys import Keys
browser = webdriver.Firefox()
browser.get('https://gabrielecirulli.github.io/2048/')
htmlElem = browser.find_element_by_tag_name('html')
for i in range(100):
    htmlElem.send_keys(Keys.UP)
    htmlElem.send_keys(Keys.LEFT)
    htmlElem.send_keys(Keys.RIGHT)
    htmlElem.send_keys(Keys.DOWN)
    print('done!')

11.4 링크 검증
주어진 웹 페이지 URL 에 대해 모든 링크 의 페이지 를 다운로드 하 는 프로그램 을 만 듭 니 다.프로그램 은 404 'NotFound' 상태 코드 가 있 는 모든 페이지 를 나 쁜 링크 로 출력 해 야 합 니 다.
import requests,os,bs4
url = 'https://www.scut.edu.cn/new/'
os.makedirs('11.11.4',exist_ok=True)
res = requests.get(url)
res.raise_for_status()
soup = bs4.BeautifulSoup(res.text, "html.parser")
comicElem = soup.select('a[href]')
for i in range (0,len(comicElem)-1):
    if comicElem[i].get('href').startswith('http:'):
        dlurl=comicElem[i].get('href')
    elif comicElem[i].get('href').startswith('#'):
        continue
    else:
        dlurl='https://www.scut.edu.cn'+comicElem[i].get('href')
    temp = requests.get(dlurl)
    if temp.status_code == 404:
        print(dlurl + 'is 404')
    else:
        tempFile = open('11.11.4\\'+str(i)+'.txt','wb')
        for chunk in temp.iter_content(100000):
            tempFile.write(chunk)
        tempFile.close()

좋은 웹페이지 즐겨찾기