I've made this simple program that uses a def function to output one of the components of a list. The component isn't being printed as specified in the code, which is really confusing me. Any help would be appreciated.
Members = ["fine", "Mine"]
def Helpers():
print("Helpers who wanna work work work")
for record in Members:
if(record[0] == "fine"):
print(record[1])
Helpers()