Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

using the programming language of Python, ask these questions below, what would

ID: 3854024 • Letter: U

Question

using the programming language of Python, ask these questions below, what would the program look like.

Asks the user for his/her username using the Python input command

Using a comparison operator, determine if the username entered is "Bond" (Note: Python is case sensitive - "Bond" and "bond" are different), ask for a numeric PIN, using the input command. Otherwise, display the message, "Agent ... err ... I mean User unknown."

Note that PIN's are typically numbers, so the input needs to be converted to an integer.

If the user's PIN is 7, display the message, "We meet again, Mr. Bond ...". Otherwise display the message, "PIN invalid".

In all cases, display, "Authentication attempt completed." before exiting the program.

Explanation / Answer


username1 = raw_input(" Enter username1: ")
username2 = raw_input(" Enter username2: ")
if username1 == username2:
print(" ")
print("Strings are Equal",username1, " & ", username2)
else:
print(" Strings are not Equal")
pin = input(" Enter Pin number: ")
if pin == 7:
print(" We Meet Again Mr.Bond...")
else:
print(" Agent ... err ... I mean User unknown.")


OUTPUT


Enter username1: Bond
Enter username2: Bond
('Strings are Equal', 'Bond', ' & ', 'Bond')
Enter Pin number: 7
We Meet Again Mr.Bond...


Enter username1: Bond
Enter username2: bond
Strings are not Equal
Enter Pin number: 7
We Meet Again Mr.Bond...

Enter username1: Bond
Enter username2: bond
Strings are not Equal
Enter Pin number: 5
Agent ... err ... I mean User unknown.