Flow Control in Python Dr. Hari V S Department of Electronics and Communication College of Engineering Karunagappally The instructions in the code are executed, skipped or repeated based on flow control statements. These contain a set of conditions and a code block that is executed according to the conditions. These code blocks are identified by indentation, which is a unique feature of Python. Let us consider an if ... else statement. if ... else print 'Enter the password..' pass=input() if pass=='hari': print 'Access granted ...' else: print 'Wrong password ...' Many conditions are checked by the elif statement as print 'Enter an integer...' x=input() if x print 'The number is less than 10 ...' elif x print 'The number is less than 50' elif x print 'The number is less than 100' else: print 'the number is greater than 100 ...'...