diff --git a/README.md b/README.md index de919df..6c2d008 100644 --- a/README.md +++ b/README.md @@ -20,6 +20,5 @@ A. Write a Python script which will find all numbers that are : HINT: Consider use range(#begin, #end) method B. Update this README.md with the insctruction(s) needed to run that script -```shell - -``` \ No newline at end of file +link:https://docs.python.org/3/tutorial/index.html +add a commande python script.py to begin the script \ No newline at end of file diff --git a/script.py b/script.py index 6e2f59b..b4bbcf6 100644 --- a/script.py +++ b/script.py @@ -25,5 +25,9 @@ ######### # INSERT YOUR CODE BELOW THIS LINE + +for x in range(2000, 3201): + if (x%7==0) and (x%5!=0): +print(x) #########