diff --git a/hello.py b/hello.py new file mode 100644 index 0000000..e75154b --- /dev/null +++ b/hello.py @@ -0,0 +1 @@ +print("hello world") \ No newline at end of file diff --git a/list.py b/list.py new file mode 100644 index 0000000..3bee904 --- /dev/null +++ b/list.py @@ -0,0 +1,4 @@ +#create a list of fruits +fruits = ['apple', 'banana', 'cherry'] + +print(fruits) diff --git a/students.json b/students.json new file mode 100644 index 0000000..1df5f90 --- /dev/null +++ b/students.json @@ -0,0 +1,23 @@ +{ + "students": [ + { + "id": 1, + "name": "Alice", + "age": 20, + "grades": { + "math": 90, + "science": 85 + } + }, + { + "id": 2, + "name": "Bob", + "age": 22, + "grades": { + "math": 75, + "science": 80 + } + } + ] + } + \ No newline at end of file