摘要:
1.判定字符串中是否含有中文 2.判定是否是真实姓名 3.提取字符串中的中文 4.过滤掉字符串中的中文 # 检查是否带有中文字符 import re def check_contain_chinese(check_str): for ch in check_str: if u'\u4e00' <= 阅读全文
2020年12月11日
摘要:
1.循环pd.DataFrame和行 2.为行添加函数 3.当显示{pd.DataFrame}为空时显示其他项 4.奇数和偶数行不一样上色 <table class="table table-hover"> <tr> <th>站点</th> <th>销售</th> <th>广告对接人</th> <t 阅读全文