Largest = None While True: num = input("enter number") if largest is None: Largest = num if Largest>num: print("maximum is " + str(Largest)) I want this code to ...
What am i doing wrong?
Syntax?