摘要: 1、字符串 2、字符串常用操作 a='helLO' print(a.upper()) # 全部大写 print(a.lower()) # 全部小写 print(a.swapcase()) # 大小写互换 print(a.capitalize()) # 首字母大写,其余小写 print(a.title 阅读全文
posted @ 2017-11-14 18:28 申不二 阅读(23817) 评论(0) 推荐(6) 编辑
摘要: 一、介绍 官网:http://selenium-python.readthedocs.io/ 二、安装 #安装:selenium+chromedriver pip3 install selenium 下载chromdriver.exe放到python安装路径的scripts目录中即可,注意最新版本是 阅读全文
posted @ 2017-11-14 00:16 申不二 阅读(241) 评论(0) 推荐(1) 编辑