Python: Coffee Consumption – P4
Learning : Python, SQlite3, Dataset, Pandas,
Subject: Create Coffee Consumption Application.
[NOTE: To keep the code as simple as we can, We WILL NOT ADD any user input Varevecations. Assuming that our user will Enter the right inputs.]
[ IF THE IS FIRST TIME DOWNLOADING THE CODE FILE, SELECT OPTION 7 FROM MAIN-MENU TO CREATE THE DATABASE]
In this part (Part-4) of Coffee Consumption App, we will write all three Function to manage the Coffee types.
- Create Function: Add New Coffee Type.
- Create Function: Edit a Coffee Type.
- Create Function: Delete a Coffee Type.
Beginning with adding new Coffee Type, we will ask the user to enter a new Coffee Type, then we simply added to the databasde. … Here is the Code ..
![]() |
Tip: To Capitalize user input we are using one line code
# Capitalize user input
user_input = ” “.join([word.capitalize() for word in user_input.split(” “)])
The second Function in this part is to Edit a selected Coffee Type, so we will list-down all Types we have in the database, the user will select one (ID) then we will ask to enter the new one and update the database. Here is the code..
![]() |
Last Function in this part will be to Delete a selected Coffee Type, so again we will list all Coffee Types we have and will ask the user to select the one to be Deleted, then we execute the SQL command to Delete the record from the database… Here is the code..
![]() |
What’s Coming: In Part-5 we will do the Follwing:
Writing three Function to Manage the Coffee Size, Functions are: Add New Coffee Size, Edit Coffee Size and Delete a Coffee Size.
..:: Have Fun with Coding ::.. 🙂
::.Coffee Consumption Parts.::
Part 1 | Part 2 | Part 3 | Part 4 | Part 5 |
Part 6 | Part – | Part – | Part – | Part – |
To Download my Python code (.py) files Click-Here
By: Ali Radwani
-
August 29, 2021 at 7:10 amPython: Coffee Consumption – P5 | Ali's Photography Space...
-
September 5, 2021 at 7:13 amPython: Coffee Consumption – P6 | Ali's Photography Space...
-
September 8, 2021 at 7:10 amPython: Coffee Consumption – P7 | Ali's Photography Space...
-
September 26, 2021 at 7:05 amPython: Coffee Consumption P8 | Ali's Photography Space...
-
September 30, 2021 at 7:12 amPython: Coffee Consumption P9 | Ali's Photography Space...
-
October 11, 2021 at 7:10 amPython: Coffee Consumption P10 | Ali's Photography Space...