Converts Fahrenheit degrees to Celcuis degrees or Kelvin
Project description
A test.py file.
‘’’ Created on Oct 22, 2013
@author: kb9agt ‘’’
import tempdga.fahrenheit2celsuis
import tempdga.fahrenheit2kelvin
def test():
f_temp = 32.018
cns = tempdga.fahrenheit2celsuis.Fahrenheit2Celcuis
c_temp = cns.convert(cns, f_temp)
print(“{0:f}”.format(c_temp))
kns = tempdga.fahrenheit2kelvin.Fahrenheit2Kelvin
k_temp = kns.convert(kns, f_temp)
print(k_temp)
if __name__ == ‘__main__’:
test()
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
tempdga-1.0.zip
(2.2 kB
view details)
File details
Details for the file tempdga-1.0.zip.
File metadata
- Download URL: tempdga-1.0.zip
- Upload date:
- Size: 2.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2093d11ea1bfe3fcf1370d33449b8297b3f81ffb3b7414c63c60630b19d1023f
|
|
| MD5 |
73e4bc18c5bc3be08b77ebebdb939148
|
|
| BLAKE2b-256 |
f83fc7b1269dff2fb77a757cdbd0fa8c6b68a1ebba44b09b22ea2bb905facd54
|