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 · General · Coding
55Quality
88%Useful
85Reliability

The prompt

Below is an instruction that describes a task. Write a response that appropriately completes the request. ### Instruction: Write a Python script to identify the words that contain more than one vowel in a given sentence. ### Input: Sentence: The quick brown fox jumped over the lazy dog. ### Output: import re sentence = "The quick brown fox jumped over the lazy dog." pattern = r"\b(\w*[aeiou]\w*){2,}\b" match = re.findall(pattern, sentence) print(match) # Output: ['quick', 'brown', 'jumped', 'over', 'lazy']
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