- 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])
5 Réponses
+ 5
Answer =
x = list(range(0,99))
print(x[4])
+ 2
To create list we use list method so there should be list
+ 1
x =
(
(0, 99))
print(
[4])
0
x = list(range(0, 99))
print(x[4])
- 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])