BluCloudEngineer/UWA-Workflows-in-GitHub-2023

Add convert Celsius to Fahrenheit logic to the application

Aberta

#108 aberto em 18 de mar. de 2026

 (0 comentário) (0 reação) (0 responsável)Python (40 forks)auto 404
help wanted

Métricas do repositório

Stars
 (0 estrela)
Métricas de merge de PR
 (Métricas PR pendentes)

Description

New Feature Request

New Feature Checklist

Before submitting a new feature, please view the currently requested features here. If your feature has not been submitted, please complete this report:

  • I have checked the GitHub issues tracker and my feature has NOT been previously submitted.
  • This report is for a single feature only, I will create a new report for additional features.

Describe the New Feature

I want to add logic to the calculator application so that when one number is provided, it will convert the value (in degrees Celsius) to degrees Fahrenheit.

For example, if the following POST data is sent to the application:

data = {
    "operation": "celsius_to_fahrenheit",
    "number_1": 30,  # Key and value required
    "number_2": None # Key must be supplied but its value is not used
}

The result will be:

Result: 86.0 °F

NOTE: The output must include °F at the end of the result

Describe Why the New Feature Should be Added

This task is required for next release for the customer.

Screenshots

Not applicable

Additional Notes

Not applicable

Guia do colaborador