python之基

python之基

    • 前言
    • 判断类
      • all:元素都为真
      • any:元素至少一个为真
      • bool:判断是真是假
    • 类型转换
      • bin:十转二
      • oct:十转八
      • hex:十转十六
      • bytes:字符串转字节
      • str:转为字符串
      • chr:十转ASCII
      • ord:ASCII转十
      • dict:转为字典
      • format:字符串格式化
      • list:转列表类型
      • set: 转为集合对象
      • slice:转为切片对象
      • tuple:转元组
    • 迭代器相关操作
      • enumerate:枚举对象
      • filter:过滤器
      • frozenset:冻结集合
      • iter:创建迭代器类型
      • len:求序列元素长度
      • list:f映射到元素上
      • max:可迭代对象最大值
      • min:可迭代对象最小值
      • next:下一个元素
      • range: 创建range序列
      • reversed:反向迭代器
      • sorted:拿来就用的排序函数
      • zip:聚合迭代器
    • 类的相关方法
      • ascii:展示对象
      • classmethod: 静态方法
      • delattr:动态删除属性
      • getattr:动态获取对象属性
      • hasattr:对象是否有这个属性
      • hash:返回对象的哈希值
      • help:帮助文档
      • id:对象门牌号
      • dir:一键查看对象的所有方法
      • isinstance:实体对应类型
      • issubclass:父子关系鉴定
      • property:创建属性的两种方式
      • type:所有对象之根
      • type: 查看对象类型
    • 数学
      • complex:创建复数
      • divmod:取商和余数
      • float:转为浮点类型
      • int:转为整型
      • pow:次幂
      • round:四舍五入
      • sum:求和函数
    • 操作系统
      • compile:执行字符串表示的代码
      • input:获取用户输入
      • open:打开文件
      • print:打印
    • 杂类
      • callable:是否可被调用

前言

最近,偶然看到一位大佬的GitHub上的一本接收python用法的书,觉得很好,刚好也能借此熟悉一下python的使用。整本书包括三个部分:python之基,python之正,python之例、python之能。以下是原文链接。如果认为本文引用过多,还请联系本人,尽快删除。向大佬致敬!
https://github.com/jackzhenguo/python-small-examples/releases/tag/V1.1

本篇博客主要装在python之基,主要介绍python常用的内置函数及用法。由于原文可能是按照函数字母进行排序,本篇博客按照功能稍微划分了一下,如果有大佬认为不妥,还请不吝赐教。

判断类

all:元素都为真

接受一个迭代器,如果迭代器所有的元素都为真,则返回True,否则返回False。

In [2]: all([1,0,3,6])
Out[2]: False
In [3]: all([1,2,3])
Out[3]: True

any:元素至少一个为真

接受一个迭代器,如果迭代器里有一个元素为真,那么返回True,否则返回False。

In [2]: any([0,0,0,[]])
Out[2]: False
In [3]: all([0,0,1])
Out[3]: True

bool:判断是真是假

判断一个对象是True,还是False。

In [38]: bool([0,0,0])
Out[38]: True
In [39]: bool([])
Out[39]: False
In [40]: bool([1,0,1])
Out[40]: True

类型转换

bin:十转二

将十进制转换为二进制

In [35]: bin(10)
Out[35]: '0b1010'

oct:十转八

将十进制转换为八进制

In [35]: bin(9)
Out[35]: '0o11'

hex:十转十六

将十进制转换为十六进制

In [35]: hex(15)
Out[35]: '0xf'

bytes:字符串转字节

将一个字符串转换为字节类型

In [44]: s = "apple"
In [45]: bytes(s,encoding='utf-8')
Out[45]: b'apple'

str:转为字符串

将字符类型、数值类型等转换为字符串类型

In [46]: integ = 100
In [47]: str(integ)
Out[47]: '100

chr:十转ASCII

查看十进制整数对应的ASCII字符

In [54]: chr(65)
Out[54]: 'A'

ord:ASCII转十

查看某个ASCII字符对应的十进制整数

In [60]: ord('A')
Out[60]: 65

dict:转为字典

创建数据字典

In [92]: dict()
Out[92]: {}
In [93]: dict(a='a',b='b')
Out[93]: {'a': 'a', 'b': 'b'}
In [94]: dict(zip(['a','b'],[1,2]))
Out[94]: {'a': 1, 'b': 2}
In [95]: dict([('a',1),('b',2)])
Out[95]: {'a': 1, 'b': 2}

format:字符串格式化

格式化输出字符串,format(value, format_spec)实质上是调用vale的format(format_spec)方法。

In [104]: print("i am {0}, age{1}".format("tom",18))
Out[104]: i am tom, age18
3.1415926 {:.2f} 3.14 保留小数点后两位
3.1415926 {:+.2f} +3.14 带符号保留小数点后两位
-1 {:+.2f} -1.00 带符号保留小数点后两位
2.71828 {:.0f} 3 不带小数
5 {:0>2d} 05 数字补零 (填充左边, 宽度为2)
5 {:x<4d} 5xxx 数字补x (填充右边, 宽度为4)
10 {:x<4d} 10xx 数字补x (填充右边, 宽度为4)
1000000 {:,} 1,000,000 以逗号分隔的数字格式
0.25 {:.2%} 25.00% 百分比格式
1000000000 {:.2e} 1.00e+09 指数记法
18 {:>10d} ’ 18’ 右对齐 (默认, 宽度为10)
18 {:<10d} '18 ’ 左对齐 (宽度为10)
18 {:^10d} ’ 18 ’ 中间对齐 (宽度为10)

list:转列表类型

list: 返回可变序列类型。

In [85]: list(map(lambda x: x%2==1, [1,3,2,4,1]))
Out[85]: [True, True, False, False, True]

set: 转为集合对象

返回一个set对象,可实现去重

In [159]: a = [1,4,2,3,1]

In [160]: set(a)
Out[160]: {1,2,3,4}

slice:转为切片对象

class slice(start, stop[, step])
返回一个表示由range(start, stop[, step])所指定索引集的slice对象,它让代码可读性、可维护性大大增强。

In [13]: a = [1,4,2,3,1]

In [14]: my_slice_meaning = slice(0,5,2)

In [15]: a[my_slice_meaning ]
Out[15]: [1,2,1]

tuple:转元组

tuple()将对象转为一个不可变的序列类型,元组

In [16]: i_am_list = [1,3,5]
In [17]: i_am_tuple = tuple(i_am_list)
In [18]: i_am_tuple
Out[18]: (1, 3, 5)

迭代器相关操作

enumerate:枚举对象

返回一个可以枚举的对象,该对象的next()方法将返回一个元组。

In [98]: s = ['a', 'b', 'c']
...: for i ,v in enumerate(s,1):
...: print(i,v)
...:
1 a
2 b
3 c

filter:过滤器

过滤器,构造一个序列,等价于

[item for item in iterables if function(item)]

在函数中设定过滤条件,逐一循环迭代器中的元素,将返回值为True时的元素留下,形成一个filter类型数据。

In [101]: fil = filter(lambda x: x>10,[1,11,2,45,7,6,13])
In [102]: list(fil)
Out[102]: [11, 45, 13]

frozenset:冻结集合

创建一个不可修改的集合

In [105]: frozenset([1,1,3,2,3])
Out[105]: forzenset({1,2,3})

iter:创建迭代器类型

返回一个可迭代对象,sentinel可省略。

In [72]: lst = [1,3,5]
In [73]: for i in iter(lst):
...: 		print(i)
...:
1 3 5

sentinel理解为迭代对象的哨兵,一旦迭代到此元素,立即终止。

I
n [81]: class TestIter(object):
...: 		def __init__(self):
...: 			self.l=[1,3,2,3,4,5]
...: 			self.i=iter(self.l)
...: 		def __call__(self): #定义了__call__方法的类的实例是可调用的
...: 			item = next(self.i)
...: 			print ("__call__ is called,which would return",item)
...: 			return item
...: 		def __iter__(self): #支持迭代协议(即定义有__iter__()函数)
...: 			print ("__iter__ is called!!")
...: 			return iter(self.l)
...:
In [82]: t = TestIter()
...: 	t1 = iter(t, 3)
...: 	for i in t1:
...: 		print(i)
...:
__call__ is called,which would return 1
1 __
call__ is called,which would return 3

len:求序列元素长度

返回对象的长度(元素个数)。

In [83]: dic = {'a':1,'b':3}

In [84]: len(dic)
Out[84]: 2

list:f映射到元素上

返回一个将function应用于iterable中每一项并输出其结果的迭代器:

In [85]: list(map(lambda x: x%2==1, [1,3,2,4,1]))
Out[85]: [True, True, False, False, True]

可以传入多个iterable对象,输出长度等于最短序列的长度:

In [88]: list(map(lambda x,y: x%2==1 and y%2==0, [1,3,2,4,1],[3,2,1,2]))
Out[88]: [False, True, False, False]

max:可迭代对象最大值

返回可迭代对象的最大值。

In [99]: max(3,1,4,2,1)
Out[99]: 4
In [100]: max((),default=0)
Out[100]: 0
In [89]: di = {'a':3,'b1':1,'c':4}
In [90]: max(di)
Out[90]: 'c'
In [102]: a = [{'name':'xiaoming','age':18,'gender':'male'},{'name':'
...: xiaohong','age':20,'gender':'female'}]
In [104]: max(a,key=lambda x: x['age'])
Out[104]: {'name': 'xiaohong', 'age': 20, 'gender': 'female'}

min:可迭代对象最小值

返回可迭代对象的最小值。用法参考max。

next:下一个元素

返回可迭代对象的下一个元素。

In [129]: it = iter([5,3,4,1])
In [130]: next(it)
Out[130]: 5
In [131]: next(it)
Out[131]: 3
In [132]: next(it)
Out[132]: 4
In [133]: next(it)
Out[133]: 1
In [134]: next(it,0) #迭代到头,默认返回值为0
Out[134]: 0
In [135]: next(it)
StopIteration Traceback (most recent call last)
<ipython-input-135-bc1ab118995a> in <module>
----> 1 next(it)
StopIteration:

range: 创建range序列

  1. range(stop)
    2)range(start,stop[,step])
    生成一个不可变序列
In [153]: range(11)
Out[153]: range(0,11)

In [154]: range(0,11,1)
Out[154]: range(0,11)

reversed:反向迭代器

返回一个反向的iterator:

In [155]: rev = reversed([1,4,2,3,1])
In [156]: for i in rev:
...: 		  print(i)
...:
1 
3 
2 
4 
1

sorted:拿来就用的排序函数

排序

In [174]: a = [1,4,2,3,1]
In [175]: sorted(a,reverse=True)
Out[175]: [4, 3, 2, 1, 1]

In [178]: a = [{'name':'xiaoming','age':18,'gender':'male'},{'name':'
...: 		xiaohong','age':20,'gender':'female'}]

In [180]: sorted(a,key=lambda x: x['age'],reverse=False)
Out[180]:
[{'name': 'xiaoming', 'age': 18, 'gender': 'male'},
 {'name': 'xiaohong', 'age': 20, 'gender': 'female'}]

zip:聚合迭代器

创建一个聚合了来自每个可迭代对象中的元素的迭代器:

In [188]: x = [3,2,1]
In [189]: y = [4,5,6]
In [190]: list(zip(y,x))
Out[190]: [(4, 3), (5, 2), (6, 1)]
In [191]: a = range(5)
In [192]: b = list('abcde')
In [193]: b
Out[193]: ['a', 'b', 'c', 'd', 'e']
In [194]: [str(y) + str(x) for x,y in zip(a,b)]
Out[194]: ['a0', 'b1', 'c2', 'd3', 'e4']

类的相关方法

ascii:展示对象

调用对象的repr()方法,获得该方法的返回值。

In [30]:class Student:
            def __init__(self,id,name):
		        self.id = id
		        self.name = name
		    def __repr__(self):
		        return 'id='+self.id+',name='+self.name
In [33]: print(xiaoming)
id=001,name=xiaoming
In [34]: acsii(xiaoming)
Out[34]:'id=001,name=xiaoming'

classmethod: 静态方法

classmethod修饰符对应的函数不需要实例化,不需要self参数,但第一个参数需要是表示自身类的cls参数,可以用来调用类的属性,类的方法,实例化对象等。

In [66]: class Student():
	...: def __init__(self,id,name):
	...: self.id = id
	...: self.name = name
	...: def __repr__(self):
	...: return 'id = '+self.id +', name = '+self.name
	...: @classmethod
	...: def f(cls):
	...: print(cls)

delattr:动态删除属性

删除对象的属性

In [87]: delattr(xiaoming,'id')
In [88]: hasattr(xiaoming,'id')
Out[88]: False

getattr:动态获取对象属性

获取对象的属性

In [106]: getattr(xiaoming, 'name')
Out[106]: 'xiaoming'

hasattr:对象是否有这个属性

对象如果有这个属性,返回True,否则返回False。

In [110]: hasattr(xiaoming,'name')
Out[110]: True

In [111]: hasattr(xiaoming,'id')
Out[111]: False

hash:返回对象的哈希值

返回对象的哈希值

In [112]: hash(xiaoming)
Out[112]: 6139638

help:帮助文档

返回对象的帮助文档

In [113]: help(xiaoming)
Help on Student in module __main__ object:
class Student(builtins.object)
| Methods defined here:
| |
__init__(self, id, name)
| |
__repr__(self)
| |
----------------------------------------------------------------------
| Data descriptors defined here:
| |
__dict__
| dictionary for instance variables (if defined)
| |
__weakref__
| list of weak references to the object (if defined)

id:对象门牌号

返回对象的内存地址

In [115]: id(xiaoming)
Out[115]: 98234208

dir:一键查看对象的所有方法

不带参数时返回当前范围内的变量,方法和定义的类型列表;带参数时返回参数的属性,方法列表。

In [96]: dir(xiaoming)
Out[96]:
['__class__',
 '__delattr__',
 '__dict__',
 '__dir__',
 '__doc__',
 '__eq__',
 '__format__',
 '__ge__',
 '__getattribute__',
 '__gt__',
 '__hash__',
 '__init__',
 '__init_subclass__',
 '__le__',
 '__lt__',
 '__module__',
 '__ne__',
 '__new__',
 '__reduce__',
 '__reduce_ex__',
 '__repr__',
 '__setattr__',
 '__sizeof__',
 '__str__',
 '__subclasshook__',
 '__weakref__',
 'name']

isinstance:实体对应类型

判断object是否是classinfo的实例,是返回true。

In [20]: class Student():
...: ...: def __init__(self,id,name):
...: ...: self.id = id
...: ...: self.name = name
...: ...: def __repr__(self):
...: ...: return 'id = '+self.id +', name = '+self.name
...:
In [21]: xiaoming = Student('001','xiaoming')
In [22]: isinstance(xiaoming,Student)
Out[22]: True

issubclass:父子关系鉴定

如果class是classinfo类的子类,返回True.

In [27]: class undergraduate(Student):
...: 		def studyClass(self):
...: 			pass
...: 		def attendActivity(self):
...: 			pass
...:
In [28]: issubclass(undergraduate,Student)
Out[28]: True
In [29]: issubclass(object,Student)
Out[29]: False
In [30]: issubclass(Student,object)
Out[30]: True

如果class是classinfo元组中某个元素的子类,也会返回True。

In [26]: issubclass(int,(int,float))
Out[26]: True

property:创建属性的两种方式

返回property属性,典型的用法:

class C:
	def __init__(self):
		self._x = None
	def getx(self):
		return self._x
	def setx(self, value):
		self._x = value
	def delx(self):
		del self._x
	# 使用property类创建 property 属性
	x = property(getx, setx, delx, "I'm the 'x' property.")

使用python装饰器,实现上与上面的完全一样的效果

class C:
	def __init__(self):
		self._x = None
	@property
	def x(self):
		return self._x
	@x.setter
	def x(self, value):
		self._x = value
	@x.deleter
	def x(self):
		del self._x

type:所有对象之根

返回一个没有特征的新对象。object是所有类的基类。

In [137]: o = object()
In [138]: type(o)
Out[138]: object

type: 查看对象类型

class type (name, bases, dict)
传入一个参数时,返回 object 的类型:

In [186]: type(xiaoming)
Out[186]: __main__.Student
In [187]: type(tuple())
Out[187]: tuple

数学

complex:创建复数

创建一个复数

In [48]: complex(1,2)
Out[48]: (1+2j)

divmod:取商和余数

分别取商和余数

In [97]: divmod(10,3)
Out[97]: (3, 1)

float:转为浮点类型

将一个字符串或整型数据转换为浮点数

In [103]: float(3)
Out[103]: 3.0

int:转为整型

int(x,base=10),x可能为字符串或数值,将x转换为一个普通数。如果参数是字符串,那么它可能包含符号和小数点。如果超出了普通整数的表示范围,一个长整数被返回。

In [120]: int('12', 16)
Out[120]: 18

pow:次幂

base为底的exp次幂。如果mod给出,取余。

In [149]: pow(3, 2, 4)
Out[149]: 1

round:四舍五入

四舍五入,ndigits代表小数点后保留几位。

In [11]: round(10.0222222,3)
Out[11]: 10.022

In [12]: round(10.05,1)
Out[12]: 10.1

sum:求和函数

求和

In [181]: a = [1,4,2,3,1]
In [182]: sum(a)
Out[182]: 11
In [185]: sum(a,10) #求和的初始值为10
Out[185]: 21

操作系统

compile:执行字符串表示的代码

将字符串编译成python能识别或可以执行的代码,也可以将文字读成字符串再编译。

In [74]: s = "print('helloworld')"
In [75]: r = compile(s,"", "exec")
In [76]: r
Out[76]: <code object <module> at 0x0000000005DE75D0, file "", line 1>
In [77]: exec(r)
helloworld

input:获取用户输入

获取用户输入的内容

In [116]: input()
aa
Out[116]: 'aa'

open:打开文件

返回文件对象。

In [146]: fo = open('D:/a.txt',mode='r', encoding='utf-8')
In [147]: fo.read()
Out[147]: '\ufefflife is not so long,\nI use Python to play.'

mode取值表:

字符 意义
‘r’ 读取(默认)
‘w’ 写入,并先截断文件
‘x’ 排它性创建,如果文件已存在则失败
‘a’ 写入,如果文件存在则在末尾追加
‘b’ 二进制模式
‘t’ 文本模式(默认)
‘+’ 打开用于更新(读取与写入)

print:打印

In [5]: lst = [1,3,5]
In [6]: print(lst)
[1, 3, 5]
In [7]: print(f'lst: {lst}')
lst: [1, 3, 5]
In [8]: print('lst:{}'.format(lst))
lst:[1, 3, 5]
In [9]: print('lst:',lst)
lst: [1, 3, 5]

杂类

callable:是否可被调用

判断一个对象是否可以被调用,能被调用的对象就是一个callable对象,比如函数str、int等都是可被调用的,但是ascii展示对象中的这个实例是不可被调用的。

In [48]: callable(str)
Out[48]: True
In [49]: callable(int)
Out[49]: True
In [50]: xiaoming
Out[50]: id = 001, name = xiaoming
In [51]: callable(xiaoming)
Out[51]: False

你可能感兴趣的:(python学习)