python-mini-projects icon indicating copy to clipboard operation
python-mini-projects copied to clipboard

A collection of simple python mini projects to enhance your python skills

Results 75 python-mini-projects issues
Sort by recently updated
recently updated
newest added

# Description A short summary of what is included in your Pull Request. Fixes #(issue_no) Replace `issue_no` in the above line, with the issue related to this PR. ## Type...

# Description ### Added doubly LinkedList Data Structure **The doubly-linked-list includes many methods:** - push - pop - get_previous - get_item - get_list - update - delete Fixes #565 ##...

# Data Structures ### Types of data structures available - **Doubly LinkedList** ### Another type of data structure will be added later StackBinary TreeBinary Search TreeHeapHashing ### Doubly LinkedList Methods...

# Description A short summary of what is included in your Pull Request. Fixes #(issue_no) Replace `issue_no` in the above line, with the issue related to this PR. ## Type...

# Description Added a new Project Url Shortener built with flask. ## Type of change Choosing one or more options from the following as per the nature of your Pull...

#RandomPasswordGenerator import string import random ## characters to generate password from alphabets = list(string.ascii_letters) digits = list(string.digits) special_characters = list("!@#$%^&*()") characters = list(string.ascii_letters + string.digits + "!@#$%^&*()") def generate_random_password(): ##...

# Description The pull request is to add a new python mini project under projects for merge sort algorithm. Fixes #(Adding merge sort algorithm in python) Replace `issue_no` in the...