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

groupConnectivity.pyx

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