Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

If anyone can help with this Python assignment, I thank you very much! Create a program that will simulate a login to a system. The

If anyone can help with this Python assignment, I thank you very much!

Create a program that will simulate a login to a system. The program needs to meet the following requirements:

1. The program needs to execute forever.

2. The program needs to ask the user if he/she is a new or existing user and should accept the following enteries only: Yes, yes, no, No. Other enteries will be considered as bugs in the program.

3. If the user is a new user, the program needs to walk the user through the following signup process:

a- Ask the user to enter first name.

b- Ask the user to enter last name.

c- Create a username based on the user's first and last name. You can use the slicing technique to create the username.

d- Ex: username = Firstname[0] + Lastname[0]

e- Print the username for the user.

f- Append the username to predefined list.

4. If it's an existing user, the program needs to prompt the user to enter his/her username to check if the user exists. If he/she is an existing user, the program needs to print a message to inform the user that access is granted.

5. If the user is non-existing user, the program needs to ask the user to re-enter username.

Again any help is appreciated! I am having most of my trouble with steps: 2,4,&5. Thank you.

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Spatial Databases A Tour

Authors: Shashi Shekhar, Sanjay Chawla

1st Edition

0130174807, 978-0130174802

More Books

Students also viewed these Databases questions

Question

What are Measures in OLAP Cubes?

Answered: 1 week ago

Question

How do OLAP Databases provide for Drilling Down into data?

Answered: 1 week ago

Question

How are OLAP Cubes different from Production Relational Databases?

Answered: 1 week ago