Skip to content

Latest commit

 

History

History
29 lines (18 loc) · 956 Bytes

File metadata and controls

29 lines (18 loc) · 956 Bytes

🐍 Python_Functions

A collection of 7 simple and useful Python function examples — each solving a real-world problem — perfect for practicing, organizing, and reusing code effectively. 🚀


📜 Contents

  1. 🌡 Temperature Converter
    Convert temperatures between Celsius and Fahrenheit.

  2. 🔒 Password Strength Checker
    Check if a password is strong based on length and character variety.

  3. 🛒 Shopping Cart Total Calculator
    Calculate the total cost of items in a cart, including quantities.

  4. 🔄 Palindrome Checker
    Check if a given string reads the same forwards and backwards.

  5. Factorial Calculator (Recursion)
    Calculate the factorial of a number using recursion.

  6. 📂 Word Frequency Counter (File Reader)
    Read a file and count the frequency of each word.

  7. 📧 Email Validator
    Validate whether a given email address is in the correct format.