各位好
最近小弟練習string問題 Code如下所示:
old_list = ['abc123', 'aef456', 'ghi789']
new_list = [x for x in old_list if re.search('^a|6$', x)]
new_list
我能找出'a'開頭或'6'結尾的數字(or |)
但是請問and要怎麼表示??我找都找不到 我嘗試
new_list = [x for x in old_list if re.search('^ab & 6$', x)]
new_list = [x for x in old_list if re.search('^a+6$', x)]
new_list = [x for x in old_list if re.search('^a.6$', x)]
全部失敗......請問有人知道方法嗎??
謝謝各位