Final answer:
The Python program takes three user inputs, converts them to integers, compares them using the max() function, and prints the largest number as a string.
Step-by-step explanation:
The student has requested a Python program that takes three numbers as input from the user and prints the largest number among them. Below is a sample code that accomplishes this task:
# Get the three numbers from the user
num1 = int(input('Enter a number: '))
num2 = int(input('Enter a number: '))
num3 = int(input('Enter a number: '))
# Compare the numbers to find the largest
largest = max(num1, num2, num3)
# Print the largest number
print('Largest:', str(largest))
This code will compare the numbers numerically, as required, and will make sure to output the largest number as a string after converting the input to integers.