id/email
password
forgot password | create account
about | help | code help+videos | done | prefs
CodingBat code practice

 

david.white@denison.edu cs111fall2019 > searchBool
prev  |  next  |  chance

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)

def searchBool(alist, astring):

Editor font size %:
Shorter output


Forget It! -- delete my code for this problem

Progress graphs:
 Your progress graph for this problem
 Random user progress graph for this problem
 Random Epic Progress Graph

Python Help

Difficulty: 120

Copyright Nick Parlante 2017 - privacy