Write a program that prompts the user for the following details and displays a formatted profile using string concatenation (the + operator).
The program should prompt for the following, in order:
Enter your name: Enter your favourite colour: Enter your age: Enter your height in metres: Enter your gender: Enter your year group: Name: name
Colour: colour
Age: age
Height: height
Gender: gender
Year group: year_group
Important:
age and year_group must be read as integersheight must be read as a float+) to build each output line, converting numbers back to strings with str() where neededInput:
Alice
blue
14
1.65
female
9
Output:
Name: Alice
Colour: blue
Age: 14
Height: 1.65
Gender: female
Year group: 9