Computer Science, asked by vippyjalan1234, 8 months ago

What is the output of the python expression below? for a in range(3,10,4): print(a)​

Answers

Answered by Anonymous
0

There is an error in your code snippet the range does not accept three arguments, it accepts two arguments (starting integer and ending integer).

And second, a is not declared in the context so, the error message will be, "invalid character in identifier".

Similar questions