下列哪个选项能检测鼠标按键按下( )。
A. if event.type == pygame.MOUSEBUTTONUP:
B. if event.type == pygame.MOUSEBUTTONDOWN:
C. if event.type == pygame.KEYDOWN:
D. if event.type == pygame.KEYUP:
想要寻找网页中所有标签名为div,类名为title的标签,下列选项中正确的是()
A. data = soup.find_all(name="title", class="div")
B. data = soup.find_all(name="title", class_="div")
C. data = soup.find_all(name="div", class="title")
D. data = soup.find_all(name="div", class_="title")
数字序列range(3, 12, 3)表示的数字是哪些?
A. 3 4 5 6 7 8 9 10 11 12
B. 3 4 5 6 7 8 9 10 11
C. 3 6 9 12
D. 3 6 9
想要修改write()绘制出的文字大小,以下选项中正确的是?
A. t.write('hello', font = ('Arial', 20))
B. t.write('hello',20)
C. t.write('hello', font = '20')