Python
瓜瓜瓜皮瓜
这个作者很懒,什么都没留下…
展开
-
ubuntu16.04安装python3.6遇到的问题及解决方案
文章目录1,ubuntu16.04安装python3.61,ubuntu16.04安装python3.6python安装add-apt-repository安装ubuntu16.04 Python版本最高到3.5,添加高位python需要设置源# 第一步安装add-apt-repository,添加ppa源apt-get updateapt-get install python-software-propertiesapt-get install apt-fileapt-get in原创 2020-07-18 11:11:47 · 1859 阅读 · 0 评论 -
python 正则表达式
python re documentRegular Expressionfindall() matches all occurrences of a pattern, not just the first one as search() does. For example, if a writer wanted to find all of the adverbs in some text, ...原创 2019-12-20 21:42:29 · 119 阅读 · 0 评论 -
python坎坷路
list1=list2[:]list1=list2.copy()'''这里的深拷贝是指列表第一层的深拷贝!!!针对嵌套列表为了深拷贝,采用如下方式:'''import copylist1=copy.deepcopy(list2)...原创 2019-12-18 21:56:04 · 384 阅读 · 0 评论 -
python认识paramiko模块
文章目录1,install2,demo2.1,SSHClient2.2,SFTPClient1,installpip install paramiko官方文档2,demo2.1,SSHClient远程服务器上执行命令import paramikotransport = paramiko.Transport((ip, port))transport.connect(usernam...原创 2019-12-16 18:52:47 · 277 阅读 · 0 评论 -
MYSQL
文章目录1, create database2,use database3,how to use pymysql python1, create databaseStep1,CREATE DATABASE 'yourdatabasename';MYSQL数据类型Step2:CREATE TABLE <表名> ([表定义选项])[表选项][分区选项];表定义选项的格式为...原创 2019-12-09 17:06:54 · 305 阅读 · 0 评论 -
python认识os模块
文章目录1,os.system2,os.popen3,os读写,创建文件1,os.systemos.system原理system函数可以将字符串转化为命令在服务器上运行;其原理是每一个system函数执行时,会创建一个子进程在系统上执行命令行,子进程的执行结果无法影响主进程。import osos.system('cd /usr/local')os.mkdir('aaa.txt)#...原创 2019-07-29 12:34:21 · 244 阅读 · 0 评论 -
python认识subprocess模块
文章目录外部链接subprocess0,subprocess.run()1,hight-level API1.1,subprocess.call()1.2,subprocess.check_call()1.3,subprocess.check_output()4,subprocess.Popen()外部链接[1]subprocess[2]python subprocess模块使用总结sub...原创 2019-06-17 13:49:26 · 283 阅读 · 0 评论 -
python认识configparser模块,argparse模块
文章目录configparser0, 常用函数0.1,读取0.2,写入0.3,详例configparserConfiguration file parserA setup file consists of sections, lead by a “[section]” header,and followed by “name: value” entries0, 常用函数0.1,读取...原创 2019-06-10 19:40:40 · 2258 阅读 · 0 评论 -
python认识collections模块
文章目录替代类型解释1,defaultdictLeetcode.492,OrderedDict3,namedtuple()collections是Python内建的集合模块High-performance container datatypesThis module implements specialized container datatypes providing alternat...原创 2019-06-06 21:48:54 · 266 阅读 · 0 评论 -
python:星号(*),双星号(**)用法
感谢python学习:python的星号(*)和双星号(**)用法除了数值幂运算外,还可以实现多参数的传入或变量的拆解#目录文章目录1,多参数的传入:2,拆解作用3,乘法作用1,多参数的传入:def one(a,*b): """a是一个普通传入参数,*b是一个非关键字星号参数""" print(b)one(1,2,3,4,5,6)#reuslt:(2,3,4,5...原创 2019-05-18 20:20:00 · 1285 阅读 · 0 评论 -
Python
Dir1,Numpynumpy.array(object, dtype = None, copy = True, order = None, subok = False, ndmin = 0)object 数组或嵌套的数列dtype 数组元素的数据类型,可选copy 对象是否需要复制,可选order 创建数组的样式,C为行方向,F为列方向,A为任意方向(默认)subok 默认返回...原创 2019-05-05 20:01:56 · 276 阅读 · 0 评论