Home › Coding › 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
55Quality
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 class for an online store item that includes fields for ID, name, price, and description. ### Input: Not applicable ### Output: class StoreItem: def __init__(self, item_id, name, price, description): self.item_id = item_id self.name = name self.price = price self.description = description def __str__(self): return f'{self.name}, ${self.price}' def to_dict(self): return { 'item_id': self.item_id, 'name': self.name, 'price': self.price, 'description': self.description }