Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions poojashresthacode.md
Original file line number Diff line number Diff line change
@@ -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)
1 change: 1 addition & 0 deletions poojashresthacode.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
print("want to learn programming")
3 changes: 3 additions & 0 deletions poojashresthacodeMultiplication.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
a = 8
b = 7
print(a * b)