Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Reshnashrestha ex1 #20

Open
wants to merge 7 commits into
base: main
Choose a base branch
from
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
20 changes: 20 additions & 0 deletions reshnashrestha.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# Computational PHY 505 Fall 2023

### Things that I would like to learn in this semester:
- Learn coding using languages like python and c++.
- Increase my familarity in programming tools like visual studio, git and github.
- Create git repository and learn to commit, pull request and merge code.
- Learn to work in group project using Google colab and IBM Quantum Computing.
- Write my own code for various tasks and understand the codes written by others.

#### For example:
I would like to write a well formatted code in python for finding a factorial of a number. At least, I am trying as follows:

```python

def factorial(n):
if n == 0:
return 1
else:
return n * factorial(n - 1)
print(factorial(16))
1 change: 1 addition & 0 deletions reshnashrestha.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
print("Hello Reshna! Let's learn programming in python!")
6 changes: 6 additions & 0 deletions reshnashresthaFactorial.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
def factorial(n):
if n == 0:
return 1
else:
return n * factorial(n - 1)
print(factorial(16))