5. Consider the following loop :
for x in range ( 10, 1):
print( "Hello")
How many times "Hello" will be printed ?
1. 9
2. error
3. 0
4. 1
Answers
Answered by
1
Answer:
Explanation:
the correct answer is 0
Answered by
0
QUESTION:
a=10
for a in range(1,a,3):
print(a)
Explanation: please answer
Similar questions