Intro to Computing - How Files and Folders Organize Data
The following code is intended to find the index of 10 in the list
data. What is wrong?data = [4, 8, 10, 15] position = data.find(10) print(position)
