BestPromptFinder
HomeCoding › Below is an instruction that describes a task. Write a respo...

Below is an instruction that describes a task. Write a respo...

Coding · Gemini, GPT-5.6, Claude · Coding
42Quality
89%Useful
86Reliability

The prompt

Below is an instruction that describes a task. Write a response that appropriately completes the request. ### Instruction: Create a REST API in Python that can be used to delete an item from a list. ### Input: Not applicable ### Output: from flask import Flask, request import json app = Flask(__name__) items = ["Apple", "Banana", "Orange"] @app.route('/items', methods=["GET"]) def get_items(): return json.dumps(items) @app.route('/items/ ', methods=["DELETE"]) def delete_item(item): if item in items: items.remove(item) message = "Item successfully deleted." else: message = "Item not found." return json.dumps({"message": message})
Find similar in the app →

Why this prompt

Source

Hugging Face

Related Coding prompts

PRD to MVP Technical Plan
Quality 93 · Claude Code
Full-Stack CRUD App Builder
Quality 93 · Claude Code
Legacy Refactor Planner
Quality 93 · Claude Code
Test Suite Generator
Quality 93 · Claude Code
Third-Party API Integration
Quality 93 · Claude Code
Database Schema and Migration
Quality 93 · Claude Code