#!/usr/bin/env python3 # -*- coding: utf-8 -*- """ ENGG1811 Lecture 2: Filling in the logical condition Purpose: The program asks the users to input two numbers The variable bigger_number should be assigned to the bigger number between a and b Quiz: You need to come out with the logical condition """ # Input two numbers a = float(input('Please input the 1st number:')) b = float(input('Please input the 2nd number:')) if : bigger_of_two_numbers = a else: bigger_of_two_numbers = b print('The bigger number is',bigger_of_two_numbers)