Answer:
To collect data from an user you need to use an input
Explanation:
Therefore,
firstName = input("First name: ")
ageInYears = input("Age in Years: ")
weightInKilograms = input("Weight in Kilograms: ")
and then print all the values:
print(firstName, int(ageInYears), float(weightInKilograms))