Fill in the blanks to create a list of numbers from 0 to 99 and output the 5th item | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
- 1

Fill in the blanks to create a list of numbers from 0 to 99 and output the 5th item

Fill in the blanks to create a list of numbers from 0 to 99 and output the 5th item. x = ______ (range(0, 99)) print(x[4])

6th Oct 2021, 6:46 PM
Kelum Dilshan Weerasuriya
5 Answers
+ 5
Answer = x = list(range(0,99)) print(x[4])
16th Mar 2022, 3:20 PM
Sajith S
+ 2
To create list we use list method so there should be list
6th Oct 2021, 7:09 PM
A͢J
A͢J - avatar
+ 1
x = ( (0, 99)) print( [4])
12th Dec 2021, 11:26 PM
YULIUS SEBASTIAN
0
x = list(range(0, 99)) print(x[4])
27th Mar 2022, 9:50 AM
Nasrin
- 5
Fill in the blanks to create a list of numbers from 0 to 99 and output the 5th item Fill in the blanks to create a list of numbers from 0 to 99 and output the 5th item. x = ______ (range(0, 99)) print(x[4])
7th Oct 2021, 9:37 AM
Kelum Dilshan Weerasuriya