A simple Python project demonstrating object-oriented programming basics with User and Post classes.
user.py- User class with email, name, password, and job title managementpost.py- Post class for creating messages with authorsmain.py- Demo script showing class usage
python main.pyUser class:
- Change password
- Update job title
- Display user information
Post class:
- Create posts with message and author
- Display post information