diff --git a/README.md b/README.md index de919df..9aa1a48 100644 --- a/README.md +++ b/README.md @@ -21,5 +21,5 @@ HINT: Consider use range(#begin, #end) method B. Update this README.md with the insctruction(s) needed to run that script ```shell - +installed python on windows and executed Python Shell, Open script.py file and run module ``` \ No newline at end of file diff --git a/script.py b/script.py index 6e2f59b..c93e665 100644 --- a/script.py +++ b/script.py @@ -27,3 +27,8 @@ # INSERT YOUR CODE BELOW THIS LINE ######### +numbers=[] +for number in range(2000, 3201): + if (number % 7 == 0) and (number % 5 != 0): + numbers.append(number) +print(numbers) \ No newline at end of file