From b8ff2305a40ef4c24a14f4489ef339276e74a1b2 Mon Sep 17 00:00:00 2001 From: Amlan Mohanty <72063042+amlanmohanty1@users.noreply.github.com> Date: Wed, 30 Sep 2020 23:29:17 +0530 Subject: [PATCH] Made some valuable changes to the README.md file and portrayed the mission of the project in a better understandable way. --- README.md | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index e3f6b14..b228593 100644 --- a/README.md +++ b/README.md @@ -1,9 +1,13 @@ # Python-Projects-for-Beginners- -The projects included in this repository are straightforward and easy to code. Beginners can start of with these projects to develop their skills. +The simple projects included in this repository are straightforward and easy to code. They implement basic level Python programming only. Beginners can start off with these projects to develop their skills. + Following are some of the undertaken projects: -1. Password Generator: In this project you will create a program to generate passwords for you,using the random module in Python3. -2. Guess Game : In this project you will create a guessing game,in which user make attempts to identify the number chosen by the computer. -3. Tic Tac Toe Game : This is a two player based "tic tac toe game", using various Python modules. -4. Credit Card Validator : Simple implementation of the "Luhn Algorithm" or Mod 10 Algorithm, verifies a valid credit card number. +1. Basic Password Generator using Python: This project allows you to create a program to generate passwords for you using the random module in Python3. + +2. Python Guessing Game : This project is about creating a guessing game where the user makes attempts to identify the number chosen by the computer. + +3. Tic Tac Toe Game using Python : This is a two player based "tic tac toe" game using various Python modules. + +4. Credit Card Validator using Python : This project showcases one of the simple implementations of the "Luhn Algorithm" or Mod 10 Algorithm, which verifies a valid credit card number.