MY CODE : # TODO: Write your header comment here. # Ending statements with the period to easily split them as mentioned in the question. questions = [     "I am the life of the party. E:1",     "I warm up quickly to others. A:1 E:1",     "I never at a loss for words. O:1 E:1",     "I seldom get lost in thought. C:1 O:-1",     "I am easily distracted. N:-1 C:-1" ] # Store the printed statement and answer options in string variables welcome_message = "Welcome to the Personality Quiz!" answer_prompt = "Enter your answer here (1-5): " # Function to extract the statement from a question string def extract_statement(question):     return question.split('.', 1)[0] # Initialize an empty list to store user answers user_answers = [] # Print the welcome message print(welcome_message + "\n") # Ask the user all five questions and record their answers for i in range(5):     # Get the selected question     selected_question = questions[i]     # Extract the statement from the selected question     question_statement = extract_statement(selected_question)     # Print the statement with quotation marks and formatting     print(f'How much do you agree with this statement?\n"{question_statement}"\n')     # Print answer options     print("1. Strongly disagree")     print("2. Disagree")     print("3. Neutral")     print("4. Agree")     print("5. Strongly agree")     # Get the user's answer     user_answer = int(input(answer_prompt))     # Validate the user input     while user_answer < 1 or user_answer > 5:         print("Invalid input. Please enter a number between 1 and 5.")         user_answer = int(input(answer_prompt))     # Append the user's answer to the list     user_answers.append(user_answer) # Print the user's answers print("\nYour answers are:", user_answers) ----------------------------------------------------------------------- pretty much just remove the spaces at lines 11, 20, 29, 38, and 47, I'm confused on that part

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

MY CODE :

# TODO: Write your header comment here.

# Ending statements with the period to easily split them as mentioned in the question.
questions = [
    "I am the life of the party. E:1",
    "I warm up quickly to others. A:1 E:1",
    "I never at a loss for words. O:1 E:1",
    "I seldom get lost in thought. C:1 O:-1",
    "I am easily distracted. N:-1 C:-1"
]

# Store the printed statement and answer options in string variables
welcome_message = "Welcome to the Personality Quiz!"
answer_prompt = "Enter your answer here (1-5): "

# Function to extract the statement from a question string
def extract_statement(question):
    return question.split('.', 1)[0]

# Initialize an empty list to store user answers
user_answers = []

# Print the welcome message
print(welcome_message + "\n")

# Ask the user all five questions and record their answers
for i in range(5):
    # Get the selected question
    selected_question = questions[i]

    # Extract the statement from the selected question
    question_statement = extract_statement(selected_question)

    # Print the statement with quotation marks and formatting
    print(f'How much do you agree with this statement?\n"{question_statement}"\n')

    # Print answer options
    print("1. Strongly disagree")
    print("2. Disagree")
    print("3. Neutral")
    print("4. Agree")
    print("5. Strongly agree")

    # Get the user's answer
    user_answer = int(input(answer_prompt))

    # Validate the user input
    while user_answer < 1 or user_answer > 5:
        print("Invalid input. Please enter a number between 1 and 5.")
        user_answer = int(input(answer_prompt))

    # Append the user's answer to the list
    user_answers.append(user_answer)

# Print the user's answers
print("\nYour answers are:", user_answers)
-----------------------------------------------------------------------
pretty much just remove the spaces at lines 11, 20, 29, 38, and 47, I'm confused on that part
In a file called main.py, implement a program that asks the user five provided questions and prints the list of answers to these questions.
The program should have five input prompts: the five integer values of the user's answers on these five questions.
In this milestone, your program should ask five questions rather than one question so copy and paste your fully tested and functional code
from the previous milestone. Your program should print the welcome message, ask the user all five questions from the questions list,
record the user's answers into the list, and then print the answers. See example below.
Welcome to the Personality Quiz!
How much do you agree with this statement?
"I am the life of the party"
1. Strongly disagree
2. Disagree
3. Neutral
4. Agree
5. Strongly agree
Enter your answer here (1-5): 1
How much do you agree with this statement?
"I am easily distracted"
1. Strongly disagree
2. Disagree
3. Neutral
4. Agree
5. Strongly agree
Enter your answer here (1-5): 1
Your answers are: [1, 1, 1, 1, 1]
You must use the list of integers to record the user's answers. Remember that you can not use any loops in this project.
Transcribed Image Text:In a file called main.py, implement a program that asks the user five provided questions and prints the list of answers to these questions. The program should have five input prompts: the five integer values of the user's answers on these five questions. In this milestone, your program should ask five questions rather than one question so copy and paste your fully tested and functional code from the previous milestone. Your program should print the welcome message, ask the user all five questions from the questions list, record the user's answers into the list, and then print the answers. See example below. Welcome to the Personality Quiz! How much do you agree with this statement? "I am the life of the party" 1. Strongly disagree 2. Disagree 3. Neutral 4. Agree 5. Strongly agree Enter your answer here (1-5): 1 How much do you agree with this statement? "I am easily distracted" 1. Strongly disagree 2. Disagree 3. Neutral 4. Agree 5. Strongly agree Enter your answer here (1-5): 1 Your answers are: [1, 1, 1, 1, 1] You must use the list of integers to record the user's answers. Remember that you can not use any loops in this project.
Your Output
1. Welcome to the Personality Quiz!
2.
3. How much do you agree with this statement?
4.
"I am the life of the party"
5.
6.
7. 2. Disagree
8. 3. Neutral
1. Strongly disagree
9. 4. Agree
10. 5. Strongly agree
11. Enter your answer here (1-5): How much do you agree
12. "I warm up quickly to others"
13.
2: Test 2 A
Input
HN M
1
12. Enter your answer here (1-5): How much do you agree
13. "I warm up quickly to others"
14.
4
Output is nearly correct, but whitespace differs. See highlights above. Special character legend
2
3
4
5
Your Output
15. 2. Disagree
16. 3. Neutral
17. 4. Agree
18. 5. Strongly agree
19. Enter your answer here (1-5): How much do you agree
20. "I never at a loss for words"
21.
22. 1. Strongly disagree
23. 2. Disagree
24. 3. Neutral
Welcome to the Personality Quiz!
25. 4. Agree
26. 5. Strongly agree
1.
2.
3.
4.
5.
6.
7.
8.
9. 4. Agree
10. 5. Strongly agree
11.
How much do you agree with this statement?
"I am the life of the party"
1. Strongly disagree
2. Disagree
3. Neutral
کے
Expected output
کے
27. 4. Agree
28. 5. Strongly agree
15. 1. Strongly disagree
16. 2. Disagree
17. 3. Neutral
18. 4. Agree
19. 5. Strongly agree
20.
21. Enter your answer here (1-5): How much do you agree
22. "I never at a loss for words"
23.
24. 1. Strongly disagree
25. 2. Disagree
26. 3. Neutral
Output is nearly correct, but whitespace differs. See highlights above. Special character legend
0/6
Expected output
Transcribed Image Text:Your Output 1. Welcome to the Personality Quiz! 2. 3. How much do you agree with this statement? 4. "I am the life of the party" 5. 6. 7. 2. Disagree 8. 3. Neutral 1. Strongly disagree 9. 4. Agree 10. 5. Strongly agree 11. Enter your answer here (1-5): How much do you agree 12. "I warm up quickly to others" 13. 2: Test 2 A Input HN M 1 12. Enter your answer here (1-5): How much do you agree 13. "I warm up quickly to others" 14. 4 Output is nearly correct, but whitespace differs. See highlights above. Special character legend 2 3 4 5 Your Output 15. 2. Disagree 16. 3. Neutral 17. 4. Agree 18. 5. Strongly agree 19. Enter your answer here (1-5): How much do you agree 20. "I never at a loss for words" 21. 22. 1. Strongly disagree 23. 2. Disagree 24. 3. Neutral Welcome to the Personality Quiz! 25. 4. Agree 26. 5. Strongly agree 1. 2. 3. 4. 5. 6. 7. 8. 9. 4. Agree 10. 5. Strongly agree 11. How much do you agree with this statement? "I am the life of the party" 1. Strongly disagree 2. Disagree 3. Neutral کے Expected output کے 27. 4. Agree 28. 5. Strongly agree 15. 1. Strongly disagree 16. 2. Disagree 17. 3. Neutral 18. 4. Agree 19. 5. Strongly agree 20. 21. Enter your answer here (1-5): How much do you agree 22. "I never at a loss for words" 23. 24. 1. Strongly disagree 25. 2. Disagree 26. 3. Neutral Output is nearly correct, but whitespace differs. See highlights above. Special character legend 0/6 Expected output
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 4 steps with 1 images

Blurred answer
Knowledge Booster
User Defined DataType
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
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