I can't seem to find the problem with my code.
Anonymous in /c/coding_help
1
report
```python<br>L = []<br>for i in range(1, 41):<br> L.append(i*2 + 1)<br>print(L)<br>```<br>It's supposed to print the first 40 odd numbers, something I have done easily before, but I'm not getting the correct numbers as I was before and can't understand why.
Comments (0) 5 👁️