Python
开源趋势
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Python飞机大战
图片素材:https://pan.baidu.com/s/1pMM0beb plane_sprites.py import random import pygame # 屏幕大小的常量 SCREEN_RECT = pygame.Rect(0, 0, 480, 700) # 刷新的帧率 FRAME_PER_SEC = 60 # 创建敌机的定时器常量 CREATE_ENEMY_EVENT = ...原创 2018-12-21 15:30:58 · 1664 阅读 · 0 评论 -
Python selenium chrome不加载图片
chrom_opt = webdriver.ChromeOptions() prefs = { "profile.managed_default_content_settings.images": 2 } chrom_opt.add_experimental_option("prefs", prefs) browser = webdriver.Chrome(executable_path="D:...原创 2019-01-24 12:30:20 · 4726 阅读 · 1 评论 -
selenium selector 坑
<div class="doc frame"> </div> find_element_by_xpath('//*[@class="doc"]')等是无法识别的 find_element_by_xpath('//*[@class="doc frame"]') 必须要是这样的才能识别原创 2019-01-25 12:45:23 · 531 阅读 · 1 评论
分享