| [ Web Proxy ] |
| Viewing: https://raw.githubusercontent.com/sofitech05/Source-Code-from-Tutorials/master/Python/11_python.py | [Back] [Original] |
numbersTaken = [2, 5, 12, 13, 17]
print("Here are the numbers that are still available")
for n in range(1,20):
if n in numbersTaken:
continue
print(n)
| Web Proxy Viewer | New URL | Original Page |