python
使用、学习python的记录
bllsll
巴拉拉,起飞。
展开
-
正则表达式
参考菜鸟教程参考https://www.cnblogs.com/tina-python/p/5508402.html先贴出一些点,方便之后查阅:正则表达式(regular expression)描述了一种字符串匹配的模式(pattern),可以用来检查一个串是否含有某种子串、将匹配的子串替换或者从某个串中取出符合某个条件的子串等。? 通配符匹配文件名中的 0 个或 1 个字符* 通配符匹配零个或多个字符^ 为匹配输入字符串的开始位置[0-9]+匹配多个数字, [0-9] 匹配单个数字,+ 匹配原创 2020-12-02 15:35:33 · 213 阅读 · 0 评论 -
import
from user_config import g_cfgimport time在看py代码的时候常常看到import 和from … import …参考https://www.cnblogs.com/sanduzxcvbnm/p/11990676.html这import 和 from…import…有什么区别?import sysprint('================Python import mode==========================');print ('Th原创 2020-12-01 19:44:13 · 177 阅读 · 0 评论