This repository includes all of my Python programs and scripts
# 📁 Folder Structure:
api_folder
boto3_Scripts
ci_integration
common_exercises
datatypes
devops_script
file_check_on_folder
flask
GraphQL
important_module
json_parse_using_python
lambda
learn_python
math_module
online_shop
pandas
print_env_stored
py_terraform
pyscript
python_flask_cicd
python_os_modules_func
regex
script_styles
tf_executor
Tkinter
# 📄 File Handling Using Python:
"r" - Read -> Default value. Opens a file for reading, error if the file does not exist.
"a" - Append -> Opens a file for appending, creates the file if it does not exist
"w" - Write -> Opens a file for writing, creates the file if it does not exist.
"x" - Create -> Creates the specified file, returns an error if the file exists.