# How Many Times? Create a list and store 10 random numbers from `1-50`. Display those values on the screen, and then prompt the user for an integer. Search through the list, and count the number of times the item is found. Name the file `how_many_times.py` ``` List: 45 39 32 12 44 50 26 42 16 20 Value to find: 42 42 was found 1 times. ``` ``` List: 45 39 32 12 44 50 26 42 16 20 Value to find: 43 43 was found 0 times. ``` ``` List: 24 30 31 24 32 33 34 24 35 36 Value to find: 24 24 was found 3 times. ``` --- ©2021 Daniel Gallo This assignment is licensed under a [Creative Commons Attribution-NonCommercial-ShareAlike 3.0 United States License](https://creativecommons.org/licenses/by-nc-sa/3.0/us/deed.en_US). ![Creative Commons License](images/by-nc-sa.png) Adapted for Python from Graham Mitchell's [Programming By Doing](https://programmingbydoing.com/)