python中一切事务皆为对象。

所以我们看字符串、数字、集合等全部使用类的方法查看某一个对象。

a = 'sb,2b'

查看对象是什么类型:print(type(a))

查看此对象有哪些属性:dir(a)

查看此对象有哪些属性也可以用:vars(a),不仅能看到所有属性还会给属性标明是方法还是属性,也可以看到是方法

查看类下的方法如何使用: help(a)

字符串的方法如: a = 'sb,2b' ,

a.upper() 将字符全部大写

a.split(',') 将字符串处理称字典

a.__contains__(‘er’) 包含返回true 语法堂 ‘er’ in a
a.__contains__(‘er’) 包含返回true 语法堂 ‘er’ in a
a.__eq__() 字符串的相等 语法堂 ==
__format__ 字符串的格式化,
  >>>a = ‘eric{}’
  >>>a.__format__(‘alex’)
  >>> a.format('alex’)
  ‘alexalex'
a.capitalize()首字符大写了
  >>> a.capitalize()
  ‘Alex’
a.casefold() 将大写字符变小些
  >>> a = 'alExV5'
  >>> a.casefold()
  ‘alexv5'
a.center这个有用
  >>> print(*'*',a,*'*')
  ******** alExV5 ********用center可以实现
  >>> a.center()
  ' alExV5 ‘
  >>> a.center(,'*’)
  '*******alExV5*******’
a.count(‘a')计算字符出现的次数。还可以定义起始位置和结束位置
a.count(‘a’,,) 从位置0到为止10统计
a.endswith() 判断是不是以什么结尾的,如果是返回true,也可以加起始位置和结束位置,判断子序列是不是以什么结尾的
a.expandtabs()将tabs转换成空格,默认情况下将一个tabs转换成8个空格
  >>> a = 'a\tlex’
  >>> a.expandtabs()
  'a lex’
a.find('e',,) 找某个字符,返回这个字符的位置,可以设置找的起始位置和结束位置,如果找的字符不存在,返回-
a.index() 也是找,和find的不同,找不到的时候直接抛出异常报错
a.format() 就是做字符串格式化的,内部调用__format__()
两种写法:
>>> a = "alex {0} as {1}”
>>> a.format('sb','eric’)
'alex sb as eric’
>>> a ="alex {name} as {id}”
>>> a.format(name='sb',id = 'eric’)
'alex sb as eric’
isalnum()是否是字母或者数字
isalpha()是否是字母
isdecimal()是否是10进制小数
isdigit()是否是数字
isidentifier()是否是关键字
islower()是否全部是小写
isnumeric()是否是数字
isprintable()是否可以打印,忽略
isspace()是否是空格
istitle()是否是标题,判断每一个字母首字母都是大写
isupper()是否全部是大写
‘’,join(list) 拼接
ljust() 和center功能相似,左对齐
rjust()
lower() 全部变成小写
lstrip()
maketrans()做一个对应表,和translate()结合使用,来做替换
translate()
>>> intab = 'abcde’
>>> outtab = ‘'
>>>trantab = ''.maketrans(intab,outtab)   
>>> trantab
{: , : , : , : , : }
>>> l_str = 'this is a ,that is bc'
>>> l_str.translate(trantab)
'this is 1 ,th1t is 23'
partition() 做分割,把字符串分割成3部分
>>> a = 'alexissb’
>>> a.partition('is’)
('alex', 'is', 'sb’)
replace()替换
replace(‘old’,’new’,个数)
rfind()从右向左找
split()
splitlines()根据行分割,没有它用split(‘\n')也能实现
strip()
startswith()以什么开头
swapcase() 大小写转换
title() 将字符串中所有的字母的首字母大写
upper() 大写
zfill()

python2中使用os.system执行系统命令

>>> a = os.system('df -lh')
Filesystem Size Used Avail Capacity iused ifree %iused Mounted on
/dev/disk1 465Gi 286Gi 179Gi % % /
>>> a 这里看到变量a的值是0,却不是命令执行的结果 使用os.popen()可以获得命令执行结果 >>> b = os.popen('df -lh')
>>> b.read()
'Filesystem Size Used Avail Capacity iused ifree %iused Mounted on\n/dev/disk1 465Gi 286Gi 179Gi 62% 1341376 4293625903 0% /\n' os.popen()相当于打开了一个临时文件存储系统命令执行的结果,所以要用b.read()读取

python2中还可以使用subprocess模块执行操作系统命令。

>>> subprocess.call(['df','-lh'])
Filesystem Size Used Avail Capacity iused ifree %iused Mounted on
/dev/disk1 465Gi 209Gi 256Gi % % /
/dev/disk2s1 741Mi 557Mi 184Mi % % /Volumes/Parallels Desktop
/dev/disk3s2 786Mi 669Mi 117Mi % % /Volumes/ParallelsDesktop 11.1.- 这里给call方法,传“df -lh”这种多个参数时,用的是传入列表的形式['df','-lh’],python解释器在处理subprocess.call()方法时,将传进来的列表参数经过处理,最终转换成shell中的df -lh,那么如果我就不想传列表,怎么办呢。如下方法
>>> subprocess.call('df -lh',shell=True)
Filesystem Size Used Avail Capacity iused ifree %iused Mounted on
/dev/disk1 465Gi 209Gi 256Gi % % /
/dev/disk2s1 741Mi 557Mi 184Mi % % /Volumes/Parallels Desktop
/dev/disk3s2 786Mi 669Mi 117Mi % % /Volumes/ParallelsDesktop 11.1.- 这里 subprocess.call('df -lh',shell=True)就明确告诉python解释器,你不用给我转了,就使用shell来进行执行。 怎么实现获取执行结果呢?
>>> a = subprocess.call("df -lh",shell=True)
Filesystem Size Used Avail Capacity iused ifree %iused Mounted on
/dev/disk1 465Gi 209Gi 256Gi % % /
/dev/disk2s1 741Mi 557Mi 184Mi % % /Volumes/Parallels Desktop
/dev/disk3s2 786Mi 669Mi 117Mi % % /Volumes/ParallelsDesktop 11.1.-
>>> a 这里我们看到0为执行命令的返回状态。 如果想存下来,不能用call,要用Popen方法。
>>> a = subprocess.Popen('df -lh',shell=True)
>>> Filesystem Size Used Avail Capacity iused ifree %iused Mounted on
/dev/disk1 465Gi 209Gi 256Gi % % /
/dev/disk2s1 741Mi 557Mi 184Mi % % /Volumes/Parallels Desktop
/dev/disk3s2 786Mi 669Mi 117Mi % % /Volumes/ParallelsDesktop 11.1.- >>> a
<subprocess.Popen object at 0x10881cb50>
看到这个和os模块的Popen方法得到的一样。那么我们试下a.read()
发现没有read()方法。在试下a.stdout.read()
同样没有a.stdout.read()方法。
那么分析下python运行Popen方法的执行过程。
Popen()方法执行里面的shell命令,其实是python又开启了一个子进程,子进程运行的结果要想返回给Popen()方法,需要使用管道,写法如下:
>> a = subprocess.Popen('df -lh',shell=True,stdout=subprocess.PIPE)
>>> a.stdout.read()
'Filesystem Size Used Avail Capacity iused ifree %iused Mounted on\n/dev/disk1 465Gi 209Gi 255Gi 46% 54971946 66867668 45% /\n/dev/disk2s1 741Mi 557Mi 184Mi 76% 142675 47036 75% /Volumes/Parallels Desktop 11\n/dev/disk3s2 786Mi 669Mi 117Mi 86% 171353 29853 85% /Volumes/ParallelsDesktop 11.1.3-32521\n’
总结:
使用subprocess模块,想获得命令执行结果。.使用Popen方法 .使用管道3.使用a.stdout.read()方法记住下面的例子即可:
a = subprocess.Popen('df -lh',shell=True,stdout=subprocess.PIPE)

python3中使用os.system执行系统命令,和python2相同

python3中使用subprocess.Popen()方法和python2相同。但是在python3中subprocess模块中多了一个subprocess.run()方法。

记住:python3.5就不用Popen,想得到命令的执行结果用subporcess.run()方法即可,run方法在2.7中是没有的

>>> B = subprocess.run('df -lh',shell=True,stdout=subprocess.PIPE)
>>> type(B)
<class 'subprocess.CompletedProcess'>
>>> B
CompletedProcess(args='df -lh', returncode=, stdout=b'Filesystem Size Used Avail Capacity iused ifree %iused Mounted on\n/dev/disk1 465Gi 286Gi 179Gi 62% 1341486 4293625793 0% /\n')
>>> B.stdout.read()
Traceback (most recent call last):
File "<stdin>", line , in <module>
AttributeError: 'bytes' object has no attribute 'read'
>>> B.stdout
b'Filesystem Size Used Avail Capacity iused ifree %iused Mounted on\n/dev/disk1 465Gi 286Gi 179Gi 62% 1341486 4293625793 0% /\n'
>>> B.stdout.decode()
'Filesystem Size Used Avail Capacity iused ifree %iused Mounted on\n/dev/disk1 465Gi 286Gi 179Gi 62% 1341486 4293625793 0% /\n'
 

python中常用的知识的更多相关文章

  1. 【转】python 历险记(四)— python 中常用的 json 操作

    [转]python 历险记(四)— python 中常用的 json 操作 目录 引言 基础知识 什么是 JSON? JSON 的语法 JSON 对象有哪些特点? JSON 数组有哪些特点? 什么是编 ...

  2. python中常用的九种数据预处理方法分享

    Spyder   Ctrl + 4/5: 块注释/块反注释 本文总结的是我们大家在python中常见的数据预处理方法,以下通过sklearn的preprocessing模块来介绍; 1. 标准化(St ...

  3. python中常用的模块二

    一.序列化 指:在我们存储数据的时候,需要对我们的对象进行处理,把对象处理成方便存储和传输的数据格式,这个就是序列化, 不同的序列化结果不同,但目的是一样的,都是为了存储和传输. 一,pickle.可 ...

  4. python中常用的九种预处理方法

    本文总结的是我们大家在python中常见的数据预处理方法,以下通过sklearn的preprocessing模块来介绍; 1. 标准化(Standardization or Mean Removal ...

  5. python中常用的时间操作

    python中常用的时间模块有time和datetime,以下是这两个模块中常用的方法: #先引入模块 import timefrom datetime import datetiem, timezo ...

  6. python中常用的导包的方法和常用的库

    python中常用的导包的方法               导入包和包名的方法:1.import package.module 2.from package.module import  * 例一: ...

  7. python 历险记(四)— python 中常用的 json 操作

    目录 引言 基础知识 什么是 JSON? JSON 的语法 JSON 对象有哪些特点? JSON 数组有哪些特点? 什么是编码和解码? 常用的 json 操作有哪些? json 操作需要什么库? 如何 ...

  8. 面向对象相关概念与在python中的面向对象知识(魔法方法+反射+元类+鸭子类型)

    面向对象知识 封装 封装的原理是,其成员变量代表对象的属性,方法代表这个对象的动作真正的封装是,经过深入的思考,做出良好的抽象(设计属性时用到),给出“完整且最小”的接口,并使得内部细节可以对外透明( ...

  9. python中常用的模块的总结

    1. 模块和包 a.定义: 模块用来从逻辑上组织python代码(变量,函数,类,逻辑:实现一个功能),本质就是.py结尾的python文件.(例如:文件名:test.py,对应的模块名:test) ...

随机推荐

  1. office2016选择性安装

    office2016在安装的时候并不像之前的版本有选择性的安装,安装器会安装一个office全家桶.那么如何自主选择安装自己需要的工具呢? 微软在下载中心中提供了Office2016部署工具(Offi ...

  2. librtmp编译for android and ios 不要openssl

    git clone git://git.ffmpeg.org/rtmpdump 不想要openssl 在rtmp.h里面 #undef CRYPTO 编译动态库与静态库只需要修改下面的 #includ ...

  3. @Resource、@Autowired跟default-autowire区别联系

    @Resource.@Autowired和default-autowire区别联系 今天看了一工程,里面既有default-autowire,又有@Autowired,还有@Resource.我就不明 ...

  4. Casual Note of Computer Network

    20170605 本地环回地址(loopback): IPV4:127.0.0.1-127.255.255.254 IPV6:::1 (即 0000:0000:0000:0000:0000:0000: ...

  5. 关于Python的装饰器 decorator

    装饰器的原理:其实就是高阶函数,接收原函数以在之前之后进行操作. 语法格式是固定的:先定义一个函数,再使用@语法调用该函数. 例子一: import functools # 定义装饰器,固定格式 de ...

  6. JAR 文件格式提供了许多优势和功能

    JAR 文件格式提供了许多优势和功能,其中很多是传统的压缩格式如 ZIP 或者 RAR 所没有提供的.它们包括: 安全性 可以对 JAR 文件内容加上数字化签名.这样,能够识别签名的工具就可以有选择地 ...

  7. 高校区LAN局域网校内网组建实践经验

    项目描述: ●校区计算机网络组建与管理和维护. 主要内容: 1.电脑故障诊断与排除与维护. 2.修复局域网内的故障电脑. 3.局域网架设虚拟系统. 4.局域网升级. 5.局域网基础架构. 6.电脑系统 ...

  8. tpshop防止sql注入补丁

    本补丁 由 QQ 木偶人  提供 首先在  www\Application\Common\Common\function.php 文件添加一个方法 /** * 转换SQL关键字 * * @param ...

  9. c# 创建压缩包并下载文件

    //DLL using ICSharpCode.SharpZipLib.Core;using ICSharpCode.SharpZipLib.Zip; public void DownloadZipF ...

  10. The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead [duplicate]

    From: http://stackoverflow.com/questions/13944956/the-mysql-extension-is-deprecated-and-will-be-remo ...