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
5 changes: 2 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
<REPLACE_WITH_YOUR_INSTRUCTION>
```
link:https://docs.python.org/3/tutorial/index.html
add a commande python script.py to begin the script
4 changes: 4 additions & 0 deletions script.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
#########