Skip to content

Made some valuable changes to the README.md file and portrayed the mission of the project in a better understandable way. #1

New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Merged
merged 1 commit into from
Sep 30, 2020
Merged
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
14 changes: 9 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -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.