Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- co2_vol = 0.038 / 100
- co2_vol_mensch = 4 / 100
- co2_vol_mensch_gesamt = co2_vol * co2_vol_mensch
- anteil_deutschland = 3.1 / 100
- co2_vol_deutschland = anteil_deutschland * co2_vol_mensch_gesamt
- print(f'Anteil in Prozent: {co2_vol_deutschland * 100:.10f} %')
- print(f'Anteil in Promille: {co2_vol_deutschland * 1000:.9f} ‰')
- print(f'Anteil in ppm: {co2_vol_deutschland * 1e6:.6f} ppm')
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement