Python基础教程中项目知识点汇总

1.yield 的用法:

https://www.ibm.com/developerworks/cn/opensource/os-cn-python-yield/

2.strip 的用法

Python strip() 方法用于移除字符串头尾指定的字符(默认为空格或换行符)或字符序列。

http://www.runoob.com/python/att-string-strip.html

3.join的用法

http://www.runoob.com/python/att-string-join.html

4.stdin  和 input 的区别

https://blog.csdn.net/CAU_Ayao/article/details/81985103

5.re.sub()的用法

https://www.cnblogs.com/nkwy2012/p/6548812.html

6.re.group()的用法

https://blog.csdn.net/flytiger_ouc/article/details/19699389

7.re模块中常用功能函数

http://www.cnblogs.com/xiaohei001/p/9783530.html

8.re.sub(r'\*(.+?)\*',r'\1','pages of *World Wide Spam*,')的理解

https://blog.csdn.net/echonupt/article/details/7889156

9.

猜你喜欢

转载自blog.csdn.net/DaenerysTargaryen/article/details/84374244