Here is a program which finds the maximum of two numbers. Guess what it will print for the variables a = 9, b = 9 and select the line of the code that will give such a result.
if a > b:
print(a)
else:
print(b)Here is a program which finds the maximum of two numbers. Guess what it will print for the variables a = 9, b = 9 and select the line of the code that will give such a result.
if a > b:
print(a)
else:
print(b)Create a free account to access the full topic