具体如下:print result32:aaaaaa33:bbbbbb34:ccccccc35:ddddddd我想知道这些数据里面是否包含字符窜‘aaaaaa’,如果是则返回前面的数值。否的话则返回一个‘Not Match’之类的
3 回答
清波
TA贡献165条经验 获得超90个赞
## 假设 result 是字符串, match_str 是匹配值 result = "33:bbbbbb" match_str = "aaaaaa" not_match = "Not Match" print result if match_str in result else not_match print (match_str in result and result) or not_match ## result 不为空字符串时也可以这么写
添加回答
举报
0/150
提交
取消