A simple Python console application to track daily time spent on various activities. This project is a basic introduction to Python fundamentals, focusing on user input, data types, variables, and f-string formatting for output.
- User-Friendly Input: Prompts the user to enter their name and the hours spent on different activities.
- Activity Tracking: Records time spent on Studying, Exercising, Gaming, and Leisure.
- Daily Summary: Provides a clear breakdown of time spent on each activity.
- Total Time Calculation: Calculates and displays the total time tracked for the day.
- Basic Python Concepts: Demonstrates the use of
input(),float(), variables, andprint()statements with f-strings.
- Python 3
-
Clone the repository:
git clone [https://github.com/YOUR_USERNAME/daily-time-tracker.git](https://github.com/YOUR_USERNAME/daily-time-tracker.git) cd daily-time-tracker(Replace
YOUR_USERNAMEwith your GitHub username anddaily-time-trackerwith your repository name if different.) -
Run the script:
python daily_time_tracker.py
(Assuming your Python file is named
daily_time_tracker.py)