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: Temperature Converter #9

Closed KALIIOWORK closed 10 months ago

KALIIOWORK commented 10 months ago

Hello Python enthusiasts! Let's add a practical utility to our repository - a Temperature Converter implemented in Python. This beginner-friendly task involves creating a program that can convert temperatures between Celsius, Fahrenheit, and Kelvin. This program will showcase basic mathematical calculations, user input handling, and conditional statements in Python.

Tasks:

Guidelines:

Example:

Welcome to the Temperature Converter!

Select input unit:
1. Celsius
2. Fahrenheit
3. Kelvin

Enter choice: 2
Enter temperature in Fahrenheit: 68

Select target unit:
1. Celsius
2. Kelvin

Enter choice: 1

Converted temperature: 20.0°C

How to Contribute:

  1. Fork this repository.
  2. Create a new Python file for the Temperature Converter: temperature_converter.py.
  3. Write the Python program following the specified tasks and guidelines.
  4. Test the converter thoroughly to ensure accurate temperature conversions.
  5. Commit your changes: git commit -m "Add Temperature Converter program"
  6. Push to your branch: git push origin add-temperature-converter
  7. Open a pull request to this repository.

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