I can't figure out how to create a dictionary that will be based on an input of a list of whole numbers (no problem with getting the input) and have the list indexes as keys and input data as values.
For example if the input is [75, 48, 23, 89]
then the end result should be [(0, 75), (1, 48), (2, 23), (3, 89)]
.