I know how to check if a string contain a particular pattern ex :
my_list=['hello.1', 'Holla',"Bonjour+","Saloute"]
for i in my_list:
if '.1' in i:
print(i)
hello.1
but how to add several patterns? for instance :
for i in my_list:
if '.1' or '+' in i:
print(i)
hello.1
Bonjour+