diff --git a/build.py b/build.py new file mode 100644 index 0000000..0635936 --- /dev/null +++ b/build.py @@ -0,0 +1,3 @@ +for i in range (1,101): + if (i%2 == 0): + print i diff --git a/practice.py b/practice.py index e69de29..3e22501 100644 --- a/practice.py +++ b/practice.py @@ -0,0 +1,7 @@ +print 0 +print 1 +j = 1 +k = 2 +for i in range (2,10): + j,k = k,j+k + print j diff --git a/tests/__init__.pyc b/tests/__init__.pyc new file mode 100644 index 0000000..d242072 Binary files /dev/null and b/tests/__init__.pyc differ diff --git a/tests/test_solution.pyc b/tests/test_solution.pyc new file mode 100644 index 0000000..675882e Binary files /dev/null and b/tests/test_solution.pyc differ