Python Escreva um programa que pede ao usuário um peso em quilogramas e converte -o em libras

kg = input("Enter the weight in KG ")
pounds = float(kg) * 2.2
print(pounds)
Cautious Caterpillar