摘要:
1、字符串 2、字符串常用操作 a='helLO' print(a.upper()) # 全部大写 print(a.lower()) # 全部小写 print(a.swapcase()) # 大小写互换 print(a.capitalize()) # 首字母大写,其余小写 print(a.title 阅读全文
摘要:
一、介绍 官网:http://selenium-python.readthedocs.io/ 二、安装 #安装:selenium+chromedriver pip3 install selenium 下载chromdriver.exe放到python安装路径的scripts目录中即可,注意最新版本是 阅读全文