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
54Quality
89%Useful
86Reliability

The prompt

Below is an instruction that describes a task. Write a response that appropriately completes the request. ### Instruction: Generate a Python program that takes a sentence as input and prints out only the verbs. ### Input: The cat jumped over the moon. ### Output: import nltk def extract_verbs(sentence): tokens = nltk.word_tokenize(sentence) tags = nltk.pos_tag(tokens) verbs = [word for word, pos in tags if pos.startswith('V')] return verbs sentence = "The cat jumped over the moon." verbs = extract_verbs(sentence) print(verbs)
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