code-explainer-c / prompt_utils.py
SandeepU's picture
Upload 4 files
74766dd verified
raw
history blame
135 Bytes
def build_prompt(code_snippet):
return f"""### Explain this Python code step-by-step:
```python
{code_snippet}
```
Explanation:"""