Here is an example that I would like to print TRUE since Drug is in the string. If disease was in the string, I would like it to print TRUE as well. For all other cases I want to print FALSE
mystring = "Drug CID006338583 AC1O3UYX Stitch 1.515E-3 1.000E0 4.989E-2 5.235E-1 4 63 PTGES,SLC15A1,KLK8,IL7R"
check_if_in_mystring = ['Drug', 'Disease']
if check_if_in_mystring in mystring:
print("TRUE")
else:
print("FALSE")