I need Python to analyze a long list of numbers stored in variables and pick the highest one. I need it to tell me which variable is the highest.
This is what I think I need (it's not actual code):
variable1 = 1000 variable2 = 242 variable3 = 87509 highest_number = pick_highest(variable1, variable2 ,variable3 ) print(highest_number) Output:
"variable3"