Skip to content
Snippets Groups Projects
Select Git revision
  • 37ea0d4e9d5896f7a07188808e888c8bb77c7478
  • master default protected
2 results

stats.py

Blame
  • first-even.py 66 B
    i = 1
    while i <= 10:
        if i%2 == 0:
            print(i)
        i += 1