Projects to consider as a bigener in PYTHON
One of the most efficient way of becoming an expert in something is by experience. Even in case of programing languages, we should make different projects according to our knowledge in that language. So, here are some python projects you should make as a beginer in python. 1. Advanced Calculator 2. Unit Converter 3. Audio Video Converter 4. YouTube Downloder 5. Password Generator 6. Number Guessing Game 7. Rock, Paper, Scissors Game 8. Hangman Game 9. TicTacToe Game 10. Binary Search Algorithm 1. Advanced Calculator: Python Programing is a great tool to evaluate. It has many libraries (such as “math”) and many functions (such as “eval()”) to make an advanced calculator. The calculator can be both command line or graphic user interface. Exampler Syntax: sum = 5%2 sol = eval(sum) print(f”{sum} = {sol}”) Note->”You will find a GUI based calculator on this blog.” 2. Unit Converter: Python’s easy and cle...