From e3b2920d2d136097a10365539c27018a30068032 Mon Sep 17 00:00:00 2001 From: jasperdchen <33201575+jasperdchen@users.noreply.github.com> Date: Sun, 29 Oct 2017 14:58:18 -0400 Subject: [PATCH] Make some minor changes to README --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 4a47dc0..abea711 100644 --- a/README.md +++ b/README.md @@ -43,7 +43,7 @@ A cipher is a secret code for a language. In this study, we will explore a ciphe The Caesar cipher, also known as a shift cipher, is one of the simplest forms of encryption. It is a substitution cipher where each letter in the original message (called the plaintext) is replaced with a letter corresponding to a certain number of letters up or down in the alphabet. -In this way, a message that initially was quite readable, ends up in a form that can not be understood at a simple glance. +In this way, a message that initially was quite readable ends up in a form that can not be understood at a simple glance. **[CODE](https://github.com/prateekiiest/Code-Sleep-Python/blob/master/Caesar-cipher/code.py)** @@ -109,7 +109,7 @@ The implementation of Sieve of Eratosthenes is used to find prime numbers. #### Website status check -A simple website crawler to check the return code of a website. It returns with a message on whether the website is online, redirected, or not found. +A simple website crawler to check the return code of a website. It returns with a message indicating whether the website is online, redirected, or not found. ![](http://yootheme.com/media/docs/assets/images/warp/error_pages_404.jpg) @@ -125,8 +125,8 @@ New to Python? No problem! Take a look at the following resources: - [Python beginners guide](https://wiki.python.org/moin/BeginnersGuide) - [Python course by Google](https://developers.google.com/edu/python/) (online course) -- [Learn Python the hard way](https://learnpythonthehardway.org/book/) (book) -- [MIT: introduction to Computer Science and programming in Python](https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-0001-introduction-to-computer-science-and-programming-in-python-fall-2016/) (open courseware) +- [Learn Python the Hard Way](https://learnpythonthehardway.org/book/) (book) +- [MIT: Introduction to Computer Science and Programming in Python](https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-0001-introduction-to-computer-science-and-programming-in-python-fall-2016/) (open courseware) - [Python for Developers](http://ricardoduarte.github.io/python-for-developers/)(book) - [How to Think Like a Computer Scientist](http://openbookproject.net/thinkcs/python/english3e/)(book) - [Byte of Python](https://python.swaroopch.com/)(book)