diff --git a/poojashresthacode.md b/poojashresthacode.md new file mode 100644 index 0000000..8ff56d8 --- /dev/null +++ b/poojashresthacode.md @@ -0,0 +1,14 @@ +# First Computational Homework of 2023 +I would like to learn the following mentioned things in my class: +1. To learn python programming language. +2. To get involve in collaboration with different groups using google collab. +3. To learn to use github for sharing my project with professor and other students. +4. To carry out computational based Physics research. +5. To learn coding. + +I am giving an example of correctly formatted python code. Let's do simple addition. + +```python +a = 2 +b = 3 +print(a + b) diff --git a/poojashresthacode.py b/poojashresthacode.py new file mode 100644 index 0000000..4d05016 --- /dev/null +++ b/poojashresthacode.py @@ -0,0 +1 @@ +print("want to learn programming") \ No newline at end of file diff --git a/poojashresthacodeMultiplication.py b/poojashresthacodeMultiplication.py new file mode 100644 index 0000000..c11a0e5 --- /dev/null +++ b/poojashresthacodeMultiplication.py @@ -0,0 +1,3 @@ +a = 8 +b = 7 +print(a * b) \ No newline at end of file