Skip to content

chriseborowski/celsius-to-fahrenheit

Repository files navigation

Celsius to Fahrenheit temperature converter in Python

View demoReport bugRequest featureDM author

Live demo

About

An interactive Celsius to Fahrenheit temperature converter in Python. Enter the desired temperature in Celsius and convert it into Fahrenheit in a second!

For a live demo of the project on Replit, click here.

Getting started

JavaScript instructions

  1. Clone the repository to your machine

git clone https://github.com/chriseborowski/celsius-to-fahrenheit

  1. Make sure you have Node.js, npm, and the readline-sync package (see below) installed

npm install readline-sync

  1. Run the code in your preferred code editor (e.g., VSCode) or Terminal/Bash window (sample code below)

node celsius_to_fahrenheit.js

  1. Enter the temperature in Celsius to be converted to Fahrenheit

  2. The converted temperature in Fahrenheit will be displayed.

Python instructions

  1. Clone the repository to your machine

git clone https://github.com/chriseborowski/celsius-to-fahrenheit

  1. Run the code in your preferred code editor (e.g., VSCode) or Terminal/Bash window (sample code below)

python3 celsius_to_fahrenheit.py

  1. Enter the temperature in Celsius to be converted to Fahrenheit

  2. The converted temperature in Fahrenheit will be displayed.

Roadmap

The development has been completed.

  • Initial version released
  • Live demo on Replit created
  • README.md description created
  • Added support for float inputs

License

Distributed under the MIT License. See license.txt for more information.

Contact

Chris Borowski

Follow me @chriseborowski on GitHubTwitterT2LinkedInLinktree (all links)

Project repository link: Celsius to Fahrenheit temperature converter in Python