I've had a look at the similar questions asked on here but I can't seem to figure it out. I'm just starting out learning Python as one of my first programming languages and this is something I need to figure out how to do to move on with a task in my course.
data = [90, 30, 13, 67, 85, 87, 50, 45, 51, 72, 64, 69, 59, 17, 22, 23, 44, 25, 16, 67, 85, 87, 50, 45, 51, 72, 59, 14, 50, 55, 32, 23, 24, 25, 37, 28, 39, 30, 33, 35, 40, 34, 41, 43, 94, 95, 98, 99, 44, 45, 47, 48, 49, 53, 61, 63, 69, 75, 77, 60, 83]
Here is my list of data, I need to print the amount of entries that are between 10 and 20 in the list (there are four)
All I can seem to do is print the 10th to the 20th entry in the list with this print(data[10:20])
but this is not the information I need to extract.