Created
December 15, 2019 12:30
-
-
Save bartekpacia/db74686a871bf5b905c93941aac73515 to your computer and use it in GitHub Desktop.
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
weight_lbs = float(input('What is your weight in pounds? ')) | |
weight_kg = weight_lbs * 0.45359237 | |
print('Your weight in kilograms is ' + str(weight_kg)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment