Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
<REPLACE_WITH_YOUR_INSTRUCTION>
installed python on windows and executed Python Shell, Open script.py file and run module
```
5 changes: 5 additions & 0 deletions script.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)