If I have the following code
if "ERB-776-RAD" in my_data.any():
print("I found it!")
Where the my_data is something as follows:
my_data = ['ERA-776-TRF','FDS-342-FHS','EBR-776-RAD'...]
How would I print the actual value I am looking for (ERB-776-RAD) instead of printing "I found it"?