nemo
nemo = ['nemo']
def findNemo(nemo):
for fish in nemo:
if fish== 'nemo':
print("I found " + fish + "!")
findNemo(nemo)INFO
nemo = ['nemo']
def findNemo(nemo):
for fish in nemo:
if fish== 'nemo':
print("I found " + fish + "!")
findNemo(nemo)