Spaces:
Runtime error
Runtime error
sjs
Browse files- test.ipynb +42 -0
- test.py +1 -0
test.ipynb
ADDED
@@ -0,0 +1,42 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"cells": [
|
3 |
+
{
|
4 |
+
"cell_type": "code",
|
5 |
+
"execution_count": 1,
|
6 |
+
"metadata": {},
|
7 |
+
"outputs": [
|
8 |
+
{
|
9 |
+
"name": "stdout",
|
10 |
+
"output_type": "stream",
|
11 |
+
"text": [
|
12 |
+
"Hello World!!\n"
|
13 |
+
]
|
14 |
+
}
|
15 |
+
],
|
16 |
+
"source": [
|
17 |
+
"print('Hello World!!')"
|
18 |
+
]
|
19 |
+
}
|
20 |
+
],
|
21 |
+
"metadata": {
|
22 |
+
"kernelspec": {
|
23 |
+
"display_name": "Python 3 (ipykernel)",
|
24 |
+
"language": "python",
|
25 |
+
"name": "python3"
|
26 |
+
},
|
27 |
+
"language_info": {
|
28 |
+
"codemirror_mode": {
|
29 |
+
"name": "ipython",
|
30 |
+
"version": 3
|
31 |
+
},
|
32 |
+
"file_extension": ".py",
|
33 |
+
"mimetype": "text/x-python",
|
34 |
+
"name": "python",
|
35 |
+
"nbconvert_exporter": "python",
|
36 |
+
"pygments_lexer": "ipython3",
|
37 |
+
"version": "3.9.5"
|
38 |
+
}
|
39 |
+
},
|
40 |
+
"nbformat": 4,
|
41 |
+
"nbformat_minor": 2
|
42 |
+
}
|
test.py
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
print('Hello World!!')
|