Spaces:
Sleeping
Sleeping
Update main.py
Browse files
main.py
CHANGED
@@ -14,4 +14,7 @@ def read_root():
|
|
14 |
|
15 |
@app.get("/api/python")
|
16 |
def hello_python():
|
17 |
-
return {"message": "Hello Python"}
|
|
|
|
|
|
|
|
14 |
|
15 |
@app.get("/api/python")
|
16 |
def hello_python():
|
17 |
+
# return {"message": "Hello Python"}
|
18 |
+
for i in range(10000):
|
19 |
+
print(i, end=" ")
|
20 |
+
|