Answered step by step
Verified Expert Solution
Question
1 Approved Answer
# the following creates my_list as an empty list my_list = list() # a) Write python code below (one or more lines) such that once
# the following creates my_list as an empty list | |
my_list = list() | |
# a) Write python code below (one or more lines) such that once the code | |
# executes my_list will have 12 items: first, the chamber | |
# (as lower-case strings) and next, the 12345 digits (as integers) | |
# b) Write python code below that creates the set, my_set, based on the | |
# elements of my_list above. You may completely replace the next line that | |
# creates an empty set. | |
my_set = set() | |
############################################################################### | |
# please do not modify these last few lines. They will be used to evaluate your | |
# exam. If you have used any print statements in your own code, please comment | |
# them out. | |
print(f'Q1:my_list|{len(my_list)}|{my_list}') | |
print(f'Q1:my_set|{len(my_set)}|{my_set}') |
ans my questions
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started