Handling Customer Orders
Example Prompt:
Example Response:
Related Tasks:
Preparing Pizza Ingredients
Example Prompt:
Example Response:
Related Tasks:
Managing Incoming Orders
Example Prompt:
Example Response:
Related Tasks:
Communicating with Kitchen Staff
Example Prompt:
Example Response:
Related Tasks:
Analyzing Sales Data
Example Prompt:
Example Response:
import pandas as pd
sales_data = pd.read_csv('sales_data.csv')
best_selling = sales_data.groupby('Pizza Type')['Quantity Sold'].sum().reset_index()
best_selling = best_selling.sort_values(by='Quantity Sold', ascending=False)
print(best_selling)
Related Tasks: