Python
Python
Which list will be referenced by the variable number after the execution of the following code? number = range(0, 9, 2)
Which list will be referenced by the variable number after the execution of the following code? number = range(0, 9, 2)
Which list will be referenced by the variable number after the execution of the following code?
number = range(0, 9, 2)
Answer: [0, 2, 4, 6, 8]
Learn More :