PYTHON   41
find stuff
Guest on 26th August 2023 12:40:05 AM


  1. def find(stuff):
  2.     for thing in stuff:
  3.         if thing == 'iQ':
  4.             print("Found it")
  5. x = "iQ"
  6. find(x)

Raw Paste

Login or Register to edit or fork this paste. It's free.