编程语言
首页 > 编程语言> > Python 的那些妙事

Python 的那些妙事

作者:互联网

python 动态创建类

type('Hello', (object,), dict())

set 集合

& 交集
| 并集
^ 补集
- 差集

built-in 函数

  1. breakpoint()
    相当于pdb断点
  2. divmod()
    divmod(4,2) # (2,0)
    divmod(x,y) 可代替 (x//y, x%y)

iter() 迭代器妙用

itr = iter('abcd')
if 'c' in itr:
	print(next(itr))  # d

标签:abcd,妙事,Python,断点,iter,那些,divmod,itr
来源: https://www.cnblogs.com/guxing123/p/16401414.html