Created
June 13, 2013 08:14
-
-
Save concHNO3/5772045 to your computer and use it in GitHub Desktop.
Wassergehalt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
gewichtBlechLeer=8552; | |
gewichtBlechNass=10403; | |
gewichtBlechTrocken=input('Gewicht des Blech mit trockener Probe [g]: ') | |
probeNass=(gewichtBlechNass - gewichtBlechLeer) | |
probeTrocken=(gewichtBlechTrocken - gewichtBlechLeer) | |
Wassergehalt=((probeNass - probeTrocken)/float(probeNass))*100 | |
print('Wassergehalt: {} %'.format(Wassergehalt)) | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment