Skip to content
Open
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
16 changes: 12 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,17 +9,25 @@ Basically, Transfer of Knowledge is your ability to apply knwoledge you already
The context for this challenge is, you guessed it, **coding** ! So, to solve this challenge you will need to use programming concepts you already learnt in Javascript and apply them in Python.

## Why Python ?

Python, like Javascript, are called [General Purspose Programming Languages](https://g.co/kgs/ni2nRd). And by adding it to the list of your technical skills, you will become more useful in a lot more situations, which increases your market value.

## What needs to be done ?

A. Write a Python script which will find all numbers that are :

1. Between 2000 and 3200 (both included)
2. Divisible by 7
2. Divisible by 7
3. **Not** a multiple of 5
HINT: Consider use range(#begin, #end) method
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>
```
for i in range(2000,3200):
if i % 7 == 0:
print(i, 'is divisible by', 7)
if i % 5 != 0:
print(i, 'is not divisible by', 5)

```