KALIIOWORK / basic_python_programs

Explore easy-to-understand Python programs for beginners! Contribute, learn, and grow your coding skills. Start your Python journey here! 🚀🐍
0 stars 8 forks source link

New Python Program: Simple Calculator #6

Open KALIIOWORK opened 10 months ago

KALIIOWORK commented 10 months ago

Hello Python enthusiasts! Let's enhance our repository with a Simple Calculator implemented in Python. This beginner-friendly task involves creating a command-line calculator that can perform basic arithmetic operations. This program will showcase fundamental input handling, arithmetic operations, and conditional statements in Python.

Tasks:

Guidelines:

Example:

Welcome to the Simple Calculator!

Please enter the first number: 10
Please enter the second number: 5
Select operation (+, -, *, /): +

Result: 10 + 5 = 15

How to Contribute:

  1. Fork this repository.
  2. Create a new Python file for the Simple Calculator: simple_calculator.py.
  3. Write the Python program following the specified tasks and guidelines.
  4. Test the calculator thoroughly to ensure it functions correctly.
  5. Commit your changes: git commit -m "Add Simple Calculator program"
  6. Push to your branch: git push origin add-simple-calculator
  7. Open a pull request to this repository.

Your contribution will provide users with a handy tool for basic calculations. Thank you for creating this useful Python program for our repository!

Tashuuuu commented 10 months ago

I'd like to work on it.