Python projects
There are 4 projects which are:
Bubble_sort.py: A type of sort which arranges items in array. (DSA)
Collatz.py: performs the collatz sequence on any number being passed in by the user
Factorial.py: clone of the factorial function in the python math module. It returns the factorial of any number being passed into it
Python-Password-Generator: which generates a random password by combining (at random) different letters, digits and characters with the use of the random and string python modules.