8. Find output of the following
for x in range(2,20,3):
print(x,end='')
Answers
Answered by
0
Answer:
for x in range(2,20,3):
print(x,end='')
This is the correct way or else you will get an error
if this question is like this then the answer is 258111417
Similar questions