使用加法 (+) 运算符将元素添加到元组,例如 new_tuple = my_tuple + (‘new’, )。 元组是不可变的,因此为了向元组添加元素,我们必须创建一个包含该元素的新元组。
#通过创建新元组将元素添加到元组
my_tuple = (‘one’, ‘two’)
new_tuple = my_tuple + (‘three’, ) # 逗号很重要
#(‘one’, ‘two’, ‘three’)
print(new_tuple)
参考:https://www.jiyik.com/w/python3/python3-tuple-add-element
python 正则表达式包含变量的写法
# python 正则表达式包含变量的写法
regex1 = re.compile('[【]'+ Q +'\d*' +'[】]')
regex2 = re.compile('[《]'+ Q +'[》]')
regex3 = re.compile('[#]'+ Q)
regex4 = re.compile(Q +'\d\d*')
regex1.search(title)
Python正则表达式(re模块)
https://zhuanlan.zhihu.com/p/373670938
python 正则表达式包含变量的写法
https://blog.csdn.net/mifaxie/article/details/79351737