Skip to content
Snippets Groups Projects
Select Git revision
  • 5d1c058feea49b3b8c481f9dc7972b36e4e26cfb
  • master default
  • zs2021
  • zs1920
4 results

zadavani-cislic.py

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