Skip to content

Instantly share code, notes, and snippets.

@Xactly
Xactly / variable_learning.py
Created February 25, 2020 16:05
One of the first working programms. Used to understand variables' types.
mass_pounds = input('Input mass(pounds): ' )
mass_kg = int(mass_pounds) / 2.205
mass_kg = str(mass_kg)
print(mass_kg + ' kg')