Skip to content

nithishreddy262/Assignment2

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 

Repository files navigation

Assignment2 - nithish

Activity 1: Configure Visual Studio Code

Terminal Screenshot

A screenshot showing the terminal open in VS Code, with git status, git config, or pwd. Terminal Screenshot

Installed Extensions

Screenshots showing Excalidraw, Git History, and Python extensions installed. VS Code Extensions

Activity 2: Workspace Setup

Screenshot of Both Repos in Workspace

Workspace Screenshot

  • Local and global git config info Local Global

Activity 3: Writing a Good README

A good README file usually contains:

  • Project Title
  • Description
  • Installation Instructions
  • Usage
  • Features
  • Contributing Guidelines
  • License
  • Contact Information

Example: Sample Python Program

I created a simple Python program calculator.py that adds two numbers.

Calculator

  • Calculator output Calculator
# calculator.py
def add(a, b):
    return a + b

if __name__ == "__main__":
    print("Sum:", add(3, 5))



## Description
A simple Python program that adds two numbers.

## Installation
Make sure Python 3 is installed. Then run:

```bash
python calculator.py
### Usage

Modify the `add()` function to use different numbers or add more functions like `subtract`, `multiply`, etc.

### Features

- Simple and beginner-friendly  
- Easily extendable  
- Demonstrates Markdown formatting and Python basics

### License

MIT License

### Contact

nithish - nithishkumarreddy6666@gmail.com

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors