API Documentation
celsius_to_fahrenheit(celsius)
Converts a temperature from Celsius to Fahrenheit.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
celsius
|
float
|
The temperature in Celsius. |
required |
Returns:
Type | Description |
---|---|
float
|
The temperature in Fahrenheit. |
Source code in temperature_conversion.py
1 2 3 4 5 6 7 8 9 10 11 |
|
celsius_to_kelvin(celsius)
Converts a temperature from Celsius to Kelvin.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
celsius
|
float
|
The temperature in Celsius. |
required |
Returns:
Type | Description |
---|---|
float
|
The temperature in Kelvin. |
Source code in temperature_conversion.py
27 28 29 30 31 32 33 34 35 36 37 |
|
check_temperature_validity(temperature, unit)
Checks if a temperature is valid for a given unit.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
temperature
|
float
|
The temperature to check. |
required |
unit
|
str
|
The unit of the temperature. Must be "C", "F", or "K". |
required |
Returns:
Type | Description |
---|---|
bool
|
True if the temperature is valid, False otherwise. |
Source code in temperature_conversion.py
53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 |
|
check_unit_validity(unit)
Checks if a unit is valid.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
unit
|
str
|
The unit to check. Must be "C", "F", or "K". |
required |
Returns:
Type | Description |
---|---|
bool
|
True if the unit is valid, False otherwise. |
Source code in temperature_conversion.py
70 71 72 73 74 75 76 77 78 79 80 81 82 |
|
convert_temperature(temperature, unit)
Converts a temperature from one unit to another.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
temperature
|
float
|
The temperature to convert. |
required |
unit
|
str
|
The unit of the temperature. Must be "C", "F", or "K". |
required |
Returns:
Type | Description |
---|---|
tuple
|
A tuple containing the converted temperature in Celsius and Kelvin units. |
Raises:
Type | Description |
---|---|
ValueError
|
If the unit is not "C", "F", or "K". |
ValueError
|
If the temperature is below absolute zero for the given unit. |
Examples:
>>> convert_temperature(32, "F")
(0.0, 273.15)
>>> convert_temperature(0, "C")
(32.0, 273.15)
>>> convert_temperature(273.15, "K")
(0.0, -459.67)
Source code in temperature_conversion.py
85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 |
|
fahrenheit_to_celsius(fahrenheit)
Converts a temperature from Fahrenheit to Celsius.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
fahrenheit
|
float
|
The temperature in Fahrenheit. |
required |
Returns:
Type | Description |
---|---|
float
|
The temperature in Celsius. |
Source code in temperature_conversion.py
14 15 16 17 18 19 20 21 22 23 24 |
|
kelvin_to_celsius(kelvin)
Converts a temperature from Kelvin to Celsius.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
kelvin
|
float
|
The temperature in Kelvin. |
required |
Returns:
Type | Description |
---|---|
float
|
The temperature in Celsius. |
Source code in temperature_conversion.py
40 41 42 43 44 45 46 47 48 49 50 |
|