This project is a collection of simple Python modules designed to help reinforce core programming concepts. Each module performs a specific task, and they are all imported and executed from a central script.
- Function:
mario_pyramid(height) - Description: Prints a visual representation of Mario-style pyramids based on the user-defined height.
- Function:
count_vowels(string) - Description: Counts the number of vowels (
a,e,i,o,u) in a given string input. - Variable:
string— the string to be analyzed.
- Function:
multiplication_table(num) - Description: Prints the multiplication table of a given number.
- Variable:
num— the number for which the table is generated.
- Description: May include an alternative approach to multiplication (optional or experimental).
- Function:
Project() - Description: Executes a placeholder or main project function. You can extend this to combine features from all modules.
- Function:
name_is_valid(name) - Description: Validates if the entered name/email meets specific criteria.
- Variable:
name— the email or name to validate.
- Function:
Check_User() - Description: Validates or checks a user’s credentials or information (implementation may vary).
python main.py