The required code which displays the largest of three user supplied integer values written in python is as follows :
num_1 = int(input())
#takes first integer input from user
num_2 = int(input())
#takes second integer input from user
num_3 = int(input())
#takes third integer input from user
def maximum(num_1, num_2, num_3):
#initiates a function named maximum which takes the three user defined inputs
largest = num_1
#sets num_1 as the largest
if (num_2 > num_1) and (num_2 >num_3):
#checks if num_2 is greater than the first and third input
largest = num_2
#if TRUE set the second input as the largest
elif (num_3 > num_1) and (num_3 > num_2):
#checks if num_3 is greater than the first and second input
largest = num_3
#if TRUE, set the third input as the largest
return largest
# return the largest value after evaluation.
print('Largest value is :' + str(maximum(num_1, num_2, num_3)))
#displays the maximum value of the three inputs.
The result of the code processed is attached in the picture below.
Learn more :brainly.com/question/14786286