python函数的使用
可变参数和不可变参数在 python 中,strings, tuples, 和 numbers 是不可更改的对象。而 list,dict 等则是可以修改的对象。def test(list_arg): prin...
可变参数和不可变参数在 python 中,strings, tuples, 和 numbers 是不可更改的对象。而 list,dict 等则是可以修改的对象。def test(list_arg): prin...
获取时间戳时间戳单位最适于做日期运算。但是1970年之前的日期就无法以此表示了。太遥远的日期也不行,UNIX和Windows只支持到2038年。import time print(time.time()) 1608...
遍历字典for key, value in content.items(): print(key, value) 遍历列表for value in content: print(value) 遍历元组...
sycm.py代码如下:from selenium import webdriver from selenium.webdriver.common.by import By import time driver =...
Python 模块Python 模块(Module),是一个 Python 文件,以 .py 结尾,包含了 Python 对象定义和Python语句。Python中的包简单来说,包就是文件夹,但该文件夹下必须存在 _...
安装pip install pyinstaller 打包pyinstaller learn01.py -F pyinstaller参数 含义 -F 指定打包后只生成一个exe格式的文件 -D ...
Selenium简介Selenium 是一个免费的分布式的自动化测试工具,支持多平台:windows、linux、MAC ,支持多浏览器:ie、ff、safari、opera、chrome,多语言C、 java、ru...
pip 简介python使用 pip 作为依赖包管理工具。相当于PHP的 composer, java的 mvn 。然而其默认的镜像源在国外,下载的速度非常慢,推荐改成 国内的镜像源。pip基本命令直接安装第三方包...
1. 查看Python版本如果是源码安装的Python环境。不管是V2还是V3版本。安装完后,通常是使用 python 命令。有些Linux发行版自带Python无需安装。但命令可能分为几种。如: python py...
系统版本:cat /etc/redhat-release CentOS release 6.9 (Final) 安装pip:wget -c "https://pypi.python.org/packa...