What will be displayed by the following code ? Hint: Python…

What will be displayed by the following code ? Hint: Python is case sensitive. So it distinguishes between upper case and lower case letters.  password = ‘Baz’ if password == ‘baz’:      print(‘Welcome!’) else:      print(‘Invalid login!’)