+ 1
1,2,4,7,11 in loop python
Show the loop program of the Q
3 Respuestas
+ 6
Nayanika Barua ,
don't expect others to solve the question for you...try your code and If you face any difficulties you can ask here with your attempted code...
+ 2
The difference increases by 1 from number to number. Therefore you should be able to find the simple Python solution yourself.
+ 1
j = 1
for i in range(5):
print(j)
j += i + 1