From b6d39d44e7609b18d6ec983cc7d84ac14c590dd7 Mon Sep 17 00:00:00 2001 From: Charmaine-byte Date: Mon, 10 Feb 2025 18:25:39 +0200 Subject: [PATCH 1/4] Update CONTRIBUTING.md --- CONTRIBUTING.md | 21 ++++++++++++++++++++- 1 file changed, 20 insertions(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index e8046b81b2..a038703584 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -1 +1,20 @@ - All contributions, bug reports, bug fixes, documentation improvements, enhancements, and ideas are welcome. +Contribution guidelines +Welcome Contributors! +Thank you for considering contributing to the centralized repository. This document outlines the guidelines for contributing to the development of Shipping Rates and Calculations. + +Code style +Please follow the coding style and conventions used in the existing codebase. This helps maintain consistency across the project. + +Documentation +Ensure that your contributions are well-documented. Include comments in your code where necessary and provide a clear and concise description of your changes in the pull request. + +Testing +Before submitting a pull request, make sure your changes have been tested thoroughly. Include relevant test cases and ensure that existing tests pass. + +Issue tracker +Check the issue tracker for any open issues or feature requests. If you're working on something, please comment on the issue to let others know. + +Code review +All contributions will go through a code review process. Be open to feedback and be willing to make changes if necessary. Code reviews help maintain code quality and consistency. + +Thank you for your contribution! From dc7e6ad543c37e5a15ea2999944a922cda7d4708 Mon Sep 17 00:00:00 2001 From: Charmaine-byte Date: Mon, 10 Feb 2025 18:36:47 +0200 Subject: [PATCH 2/4] Create Shipping_Cost_Calculator.py --- Shipping_Cost_Calculator.py | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 Shipping_Cost_Calculator.py diff --git a/Shipping_Cost_Calculator.py b/Shipping_Cost_Calculator.py new file mode 100644 index 0000000000..07a360c79a --- /dev/null +++ b/Shipping_Cost_Calculator.py @@ -0,0 +1,11 @@ +# Shipping Cost Calculator + +## Input package weight and shipping rate +weight = float(input("Enter the package weight in kilograms: ")) +rate = float(input("Enter the shipping rate per kilogram: ")) + +## Calculate shipping cost +shipping_cost = weight * rate + +## Display the result +print(f"Shipping Cost: {shipping_cost} USD") From 708c6970a27b30b1ee99a86051c11879e546fb9e Mon Sep 17 00:00:00 2001 From: Charmaine-byte Date: Sun, 16 Feb 2025 13:40:36 +0200 Subject: [PATCH 3/4] Update README.md fixing bugs --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index b103466139..2a2b1d78df 100644 --- a/README.md +++ b/README.md @@ -13,4 +13,4 @@ Output simple interest = p*t*r ``` -_© 2022 XYZ, Inc._ +_© 2023 XYZ, Inc._ From 0bb33126b6016e321e5815b9305cca8ff014840c Mon Sep 17 00:00:00 2001 From: Charmaine-byte Date: Sun, 16 Feb 2025 15:19:52 +0200 Subject: [PATCH 4/4] Update README.md fix bug --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 2a2b1d78df..b103466139 100644 --- a/README.md +++ b/README.md @@ -13,4 +13,4 @@ Output simple interest = p*t*r ``` -_© 2023 XYZ, Inc._ +_© 2022 XYZ, Inc._