about | help | code help+videos | done | prefs |
searchBool
Write a function called search that takes as parameters a list and a string and returns True if the string is in the list and False otherwise. Your function should be iterative (i.e., it must use a for loop). searchBool(['Tom', 'Fred', 'Jane', 'Harry'], 'tom') → False searchBool(['Tom', 'Fred', 'Jane', 'Harry'], 'Tom') → True searchBool(['Tom', 'Fred', 'Jane', 'Harry'], 'Harry') → True ...Save, Compile, Run (ctrl-enter) |
Progress graphs:
Your progress graph for this problem
Random user progress graph for this problem
Random Epic Progress Graph
Difficulty: 120
Copyright Nick Parlante 2017 - privacy