diff --git a/README.md b/README.md index de919df..2a28664 100644 --- a/README.md +++ b/README.md @@ -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 - -``` \ No newline at end of file +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) + +```