166k views
2 votes
For a Python program that reads every third integer in a list, which arguments of the range function should you specify?

A start, a stop, and a step argument
A start and a stop argument
No arguments
One stop argument

User Fiddy Bux
by
4.2k points

1 Answer

3 votes

Answer:

A start, a stop, and a step argument

Step-by-step explanation:

the range function takes three arguments: a start, a stop, and a step.

User Dmitry Samoylov
by
4.1k points