I need help with this lab. No one seems to get it correct. There are two inputs into outputs that must be included in the code. The first input: Testit test The first output: Unsuccessful log in attempt! try again – you have four attempts left! The second input: Test test1234 The second outfit: Successful login! These both parts need to be within the code to produce the outputs both. So both inputs need to be added to the code as well as both outputs need to be reflected in the tests that I have to run with this lab.  The current code that's within the lab itself Hass to be used along with the code that is being produced for the outputs. The current code that's within the lab itself:

Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
icon
Related questions
Question

I need help with this lab. No one seems to get it correct. There are two inputs into outputs that must be included in the code.

The first input:

Testit

test

The first output:

Unsuccessful log in attempt!

try again – you have four attempts left!

The second input:

Test

test1234

The second outfit:

Successful login!

These both parts need to be within the code to produce the outputs both. So both inputs need to be added to the code as well as both outputs need to be reflected in the tests that I have to run with this lab. 

The current code that's within the lab itself Hass to be used along with the code that is being produced for the outputs. The current code that's within the lab itself:

 

**1.12 Lab: Check Login Credentials (classes)**

Complete the `Login` class implementation. For the class method `check_credentials()`, you will need to accept two arguments - login and password. Do not forget about the self argument.

This class method will set two local variables `simlogin = "Test"` and `simpass = "test1234"`. These variables will simulate the correct login and password for the credential check process.

The method will receive the login and password from the user and check it with Test and test1234.

- If the user sent the correct credentials, output:
  - *Successful login!*

- If the user sent the correct login name but the wrong password, output:
  - *Login name is correct, incorrect password!*

- If the user sent an incorrect login name but the correct password, output:
  - *Login name is incorrect, password accepted!*

- If the user sent both incorrect login name and password, output:
  - *Unsuccessful login attempt!*

The class method will return a boolean success variable as True if the login was successful.

Using `if __name__ == "__main__":` to control the flow of your code, add a loop that will stop the process if the user attempts more than 5 login attempts.

**Example:**

If the input is:

```
Testit
test
```

And this is their first incorrect attempt. The output is:

```
Unsuccessful login attempt!
Try again - you have 4 attempts left!
```

If the input is:

```
Test
test1234
```

The output is:

```
Successful login!
```
Transcribed Image Text:**1.12 Lab: Check Login Credentials (classes)** Complete the `Login` class implementation. For the class method `check_credentials()`, you will need to accept two arguments - login and password. Do not forget about the self argument. This class method will set two local variables `simlogin = "Test"` and `simpass = "test1234"`. These variables will simulate the correct login and password for the credential check process. The method will receive the login and password from the user and check it with Test and test1234. - If the user sent the correct credentials, output: - *Successful login!* - If the user sent the correct login name but the wrong password, output: - *Login name is correct, incorrect password!* - If the user sent an incorrect login name but the correct password, output: - *Login name is incorrect, password accepted!* - If the user sent both incorrect login name and password, output: - *Unsuccessful login attempt!* The class method will return a boolean success variable as True if the login was successful. Using `if __name__ == "__main__":` to control the flow of your code, add a loop that will stop the process if the user attempts more than 5 login attempts. **Example:** If the input is: ``` Testit test ``` And this is their first incorrect attempt. The output is: ``` Unsuccessful login attempt! Try again - you have 4 attempts left! ``` If the input is: ``` Test test1234 ``` The output is: ``` Successful login! ```
Expert Solution
Step 1

Python introduction:-

Python is based on the OOPs concept, a dynamically semantic, high-level, interpreted programming language. Rapid Application Development, as well as its use as a scripting or glue language to bring existing components together, find its high-level built-in data structures, coupled with dynamic type and dynamic binding, to be particularly appealing. Python's straightforward syntax promotes readability, which lowers the expense of software maintenance. Python's support for modules and packages promotes the modularity of programs and the reuse of code.

steps

Step by step

Solved in 3 steps with 1 images

Blurred answer
Knowledge Booster
System Management Strategies
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
Database System Concepts
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
C How to Program (8th Edition)
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
Database Systems: Design, Implementation, & Manag…
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Programmable Logic Controllers
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education