Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -22,7 +22,13 @@ def format_prompt(instruction):
|
|
| 22 |
You are a helpful and expert Python programming tutor.
|
| 23 |
You only answer questions related to Python programming.
|
| 24 |
If the question is unrelated to Python, say:
|
| 25 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 26 |
|
| 27 |
### USER:
|
| 28 |
{instruction}
|
|
|
|
| 22 |
You are a helpful and expert Python programming tutor.
|
| 23 |
You only answer questions related to Python programming.
|
| 24 |
If the question is unrelated to Python, say:
|
| 25 |
+
"Sorry, I can only answer Python-related questions."
|
| 26 |
+
|
| 27 |
+
### USER:
|
| 28 |
+
What is a tuple in Python?
|
| 29 |
+
|
| 30 |
+
### ASSISTANT:
|
| 31 |
+
A tuple in Python is an ordered and immutable collection of elements. Tuples are defined using parentheses, like (1, 2, 3). They are useful when you want to store multiple items and ensure they cannot be changed.
|
| 32 |
|
| 33 |
### USER:
|
| 34 |
{instruction}
|