range(len(sports_list)) choice fills in the blank so that the output prints one line for each item in sports_list.
The term "output" refers to any info that a computer, or even another electrical device, processes and delivers. An examples of outputting is something that can be read on your laptop's monitor, such the text you type on the keyboard.
The contact between an information-processing system, such as a computers, and the outer world, which may include a human or even another information processing system, is known as input and output, or I/O. The system's inputs are also the impulses or data it receives, and its outputs are the indicators or data it sends.
To know more about Output visit:
https://brainly.com/question/27646651
#SPJ4
The complete question is-
Which choice fills in the blank so that the output prints one line for each item in sports_list?
sports_list = [ 'Hockey', 'Football', 'Cricket' ]
for i in _______:
print ( '{:d}. {:s}'.format(i+1, sports_list[i]))