Answer:
The program to this question as follows:
Program:
name = input("Student Name: ")#defining variable name
age = int(input("Student Age: "))#defining variable age
height = float(input("Height (in feet): "))#defining variable height
print(name + " " + str(age) + " "+ str(height))#print values in one line.
Output:
Student Name: John Smith
Student Age: 30
Height (in feet): 5.9
John Smith 30 5.9
Explanation:
In the above python program, three variable name, age, and height is declared, in these variables the input function is used, that takes input from the user sides on console screen, and in the next line, the print function is declared, that uses these three variables for printing their holding values in the single line.