Walk through the exercises in the attached pdf

Verified

Added on  2022/09/06

|36
|5753
|28
AI Summary

Contribute Materials

Your contribution can guide someone’s learning journey. Share your documents today.
Document Page
Walk through the exercises in the attached pdf, select the appropriate answer, describe
the action and upload the completed python script file
Select the appropriate output after running the following code block:
list ("abc")
Group of answer choices
abc
"abc"
['a', 'b', 'c']
a,b,c
Question 21 pts
Describe the action being executed by the former code block:
list() will take each character of “abc” and make a list.
Question 31 pts
Select the appropriate output after running the following code block:
list ((1,2,3))
Group of answer choices
1, 2, 3
(1,2,3)
123

Secure Best Marks with AI Grader

Need help grading? Try our AI Grader for instant feedback on your assignments.
Document Page
[1, 2, 3]
Question 41 pts
Describe the action being executed by the former code block:
list() take each element and make a list
Question 51 pts
Select the appropriate output after running the following code block:
list([1,3,5,7,9])
Group of answer choices
1, 3, 5, 7, 9
[1, 3, 5, 7, 9]
13579
(1, 3, 5, 7, 9)
Question 61 pts
Describe the action being executed by the former code block:
list() take each element and make a list.
Flag this Question
Question 71 pts
Select the appropriate output after running the following code block:
empty_list = []
print(len(empty_list))
Group of answer choices
0
15
Document Page
empty_list
len(empty_list)
Question 81 pts
Describe the action being executed by the former code block:
Because the list is empty, size is 0
Question 91 pts
Select the appropriate output after running the following code block:
another_empty_list=list ()
print(len(another_empty_list))
Group of answer choices
24
len(another_empty_list)
0
another_empty_list
Question 101 pts
Describe the action being executed by the former code block:
Because the list doesn’t contain any element
Question 111 pts
Select the appropriate output after running the following code block:
list("house")
Group of answer choices
house
h,o,u,s,e
['h', 'o', 'u', 's', 'e']
Document Page
'h', 'o', 'u', 's', 'e'
Question 121 pts
Describe the action being executed by the former code block:
list() function will take each character of “house” and make a list.
Question 131 pts
Select the appropriate output after running the following code block:
list("This word")
Group of answer choices
This word
'T', 'h', 'i', 's', ' ', 'w', 'o', 'r', 'd'
['T', 'h', 'i', 's', ' ', 'w', 'o', 'r', 'd']
T,h,i,s , W,o,r,d
Question 141 pts
Describe the action being executed by the former code block:
list() will take each character of “this word” and make a list including space.
Question 151 pts
Select the appropriate output after running the following code block:
aTuple =('ready','fire','aim')
list(aTuple)
Group of answer choices
[ready, fire, aim]
'ready', 'fire', 'aim'
('ready', 'fire', 'aim')

Secure Best Marks with AI Grader

Need help grading? Try our AI Grader for instant feedback on your assignments.
Document Page
['ready', 'fire', 'aim']
Question 161 pts
Describe the action being executed by the former code block:
list() converted the tuple into list.
Question 171 pts
Select the appropriate output after running the following code block:
aStringOf= "This is a string of "
aList=aStringOf.split(' ')
print(aList)
Group of answer choices
[This, is, a, string, of, ]
This is a string of
['This', 'is', 'a', 'string', 'of', '']
('This', 'is', 'a', 'string', 'of', '')
Question 181 pts
Describe the action being executed by the former code block:
split() function splits the list where space occurred and converts to list.
Question 191 pts
Select the appropriate output after running the following code block:
aDayString="5/1/2017"
aList=aDayString.split('/')
print(aList)
Group of answer choices
'5', '1', '2017'
Document Page
['5', '1', '2017']
('5', '1', '2017')
"5/1/2017"
Question 201 pts
Describe the action being executed by the former code block:
split() function splits the list where ‘/’ occurred and converts to list.
Question 211 pts
Select the appropriate output after running the following code block:
l_lists=[[1,2,3],[2,3,4],[3,4,5]]
new_llists=[element[1:] for element in l_lists]
i=0
for element in new_llists:
print(element)
i=i+1
if i==3:
break
Group of answer choices
2, 3, 3, 4, 4, 5
(2, 3) (3, 4) (4, 5)
2, 3 3, 4 4, 5
[2, 3] [3, 4] [4, 5]
Question 221 pts
Describe the action being executed by the former code block:
element[1:] means element[1] to element[2]
Document Page
Question 231 pts
Select the appropriate output after running the following code block:
my_list=['p','r','o','b','e']
print(my_list[0])
Group of answer choices
r
b
p
e
Flag this Question
Question 241 pts
Describe the action being executed by the former code block:
HTML EditorKeyboard Shortcuts
p is at 0th location.
Question 251 pts
Select the appropriate output after running the following code block:
my_list=['p','r','o','b','e']
print(my_list[2])
Group of answer choices
o
p
0
e
Question 261 pts
Describe the action being executed by the former code block:

Paraphrase This Document

Need a fresh take? Get an instant paraphrase of this document with our AI Paraphraser
Document Page
o is at my_list[2]
Question 271 pts
Select the appropriate output after running the following code block:
n_list=["Happy",[2,0,1,5]]
print(n_list[0][1])
Group of answer choices
p
a
2
0
Flag this Question
Question 281 pts
Describe the action being executed by the former code block:
HTML EditorKeyboard Shortcuts
“Happy” is at 0th location and ‘a’ is at 1st loc.
Flag this Question
Question 291 pts
Select the appropriate output after running the following code block:
n_list=["Happy",[2,0,1,5]]
print(n_list[1][3])
Group of answer choices
y
p
5
Document Page
0
Flag this Question
Question 301 pts
Describe the action being executed by the former code block:
HTML EditorKeyboard Shortcuts
“2,0,1,5” is at 1st loc and 5 is at 3rd loc
Flag this Question
Question 311 pts
Select the appropriate output after running the following code block:
aTuple=('ready','fire','aim')
aList=list(aTuple)
print("Length of the list:",len(aList))
Group of answer choices
Length of the list: 20
Length of the list: 12
Length of the list: 3
Length of the list: 0
Flag this Question
Question 321 pts
Describe the action being executed by the former code block:
HTML EditorKeyboard Shortcuts
The list contains 3 elements only.
Flag this Question
Document Page
Question 331 pts
Select the appropriate output after running the following code block:
aTuple=('ready','fire','aim')
aList=list(aTuple)
list_element1=aList[0]
print(list_element1)
Group of answer choices
None of these
ready
fire
aim
Flag this Question
Question 341 pts
Describe the action being executed by the former code block:
HTML EditorKeyboard Shortcuts
The 0th element is ready
Flag this Question
Question 351 pts
Select the appropriate output after running the following code block:
aTuple=('ready','fire','aim')
aList=list(aTuple)
list_element3=aList[2]
print(list_element3)
Group of answer choices
fire

Secure Best Marks with AI Grader

Need help grading? Try our AI Grader for instant feedback on your assignments.
Document Page
None of these
ready
aim
Flag this Question
Question 361 pts
Describe the action being executed by the former code block:
HTML EditorKeyboard Shortcuts
The list[2] = ‘aim’
Flag this Question
Question 371 pts
Select the appropriate output after running the following code block:
languages=["Python","C","C++","Java","Perl"]
print(languages[0]+" and "+languages[1]+" are quite different !")
Group of answer choices
Java and C are quite different !
C++ and C are quite different !
Python and C are quite different !
C and Python are quite different !
Flag this Question
Question 381 pts
Describe the action being executed by the former code block:
HTML EditorKeyboard Shortcuts
0th and 1th location are “python” and “c”
Document Page
Flag this Question
Question 391 pts
Select the appropriate output after running the following code block:
my_list=['p','r','o','g','r','a','m','i','z']
print(my_list[2:5])
Group of answer choices
['r', 'o', 'g', 'r']
[ 'r', 'o', 'g']
['o', 'g', 'r']
['p', 'r', 'o', 'g']
Flag this Question
Question 401 pts
Describe the action being executed by the former code block:
HTML EditorKeyboard Shortcuts
my_list[2:5] means my_list[2] to my_list[4]
Flag this Question
Question 411 pts
Select the appropriate output after running the following code block:
my_list=['p','r','o','g','r','a','m','i','z']
print(my_list[:-5])
Group of answer choices
['r', 'a', 'm', 'i', 'z']
['p', 'r', 'o', 'g', 'r']
Document Page
None of these
['p', 'r', 'o', 'g']
Flag this Question
Question 421 pts
Describe the action being executed by the former code block:
HTML EditorKeyboard Shortcuts
my_list[:-5] means my_list[0] to my_list[n-4]
Flag this Question
Question 431 pts
Select the appropriate output after running the following code block:
my_list=['p','r','o','g','r','a','m','i','z']
print(my_list[:])
Group of answer choices
None of these
0
['p', 'r', 'o', 'g', 'r', 'a', 'm', 'i', 'z']
[]
Flag this Question
Question 441 pts
Describe the action being executed by the former code block:
HTML EditorKeyboard Shortcuts
my_list[:] means whole list from starting to end

Paraphrase This Document

Need a fresh take? Get an instant paraphrase of this document with our AI Paraphraser
Document Page
Flag this Question
Question 451 pts
Select the appropriate output after running the following code block:
odd= [2,4,6,8]
odd[0]=1
print(odd)
Group of answer choices
[2,4,6,8]
1, 4, 6, 8
1
[1, 4, 6, 8]
Flag this Question
Question 461 pts
Describe the action being executed by the former code block:
HTML EditorKeyboard Shortcuts
Here 2 is replaced by 1
Flag this Question
Question 471 pts
Select the appropriate output after running the following code block:
odd= [2,4,6,8]
odd[0]=1
odd[1:4]=[3,5,7]
print(odd)
Group of answer choices
[1, 3, 5, 7]
Document Page
(1, 3, 5, 7)
None of these
[3, 5, 7]
Flag this Question
Question 481 pts
Describe the action being executed by the former code block:
HTML EditorKeyboard Shortcuts
Whole list is replaced with [1,3,5,7]
Flag this Question
Question 491 pts
Select the appropriate output after running the following code block:
odd= [1,3,5]
odd.append(7)
print(odd)
Group of answer choices
None of these
[1, 3, 5]
[7]
[1, 3, 5, 7]
Flag this Question
Question 501 pts
Describe the action being executed by the former code block:
HTML EditorKeyboard Shortcuts
7 is appended to the end of the list
Document Page
Flag this Question
Question 511 pts
Select the appropriate output after running the following code block:
odd= [1,3,5]
odd.append(7)
odd.extend([9,11,13])
print(odd)
Group of answer choices
[1, 3, 5, 7]
[9, 11, 13]
[1, 3, 5]
[1, 3, 5, 7, 9, 11, 13]
Flag this Question
Question 521 pts
Describe the action being executed by the former code block:
HTML EditorKeyboard Shortcuts
extend() function will append the whole list with another list
Flag this Question
Question 531 pts
Select the appropriate output after running the following code block:
odd=[1,9]
odd.insert(1,3)
print(odd)
Group of answer choices
None of these

Secure Best Marks with AI Grader

Need help grading? Try our AI Grader for instant feedback on your assignments.
Document Page
[1, 3, 1, 3, 9]
[1, 3]
[1, 3, 9]
Flag this Question
Question 541 pts
Describe the action being executed by the former code block:
HTML EditorKeyboard Shortcuts
3 is inserted at odd[1] loc
Flag this Question
Question 551 pts
Select the appropriate output after running the following code block:
odd=[1,9]
odd.insert(1,3)
odd[2:2]=[5,7]
print(odd)
Group of answer choices
[1, 3, 5, 7, 9]
[1, 9]
[5, 7]
(1, 3, 5, 7, 9)
Flag this Question
Question 561 pts
Describe the action being executed by the former code block:
HTML EditorKeyboard Shortcuts
At first 3 is inserted to index 1, then another list is been inserted to index 2
Document Page
Flag this Question
Question 571 pts
Select the appropriate output after running the following code block:
my_list=['p','r','o','b','l','e','m']
# delete one item
del my_list[2]
print("3rd element has been removed: ",my_list)
Group of answer choices
3rd element has been removed: ['p', 'r', 'b', 'l', 'e', 'm']
3rd element has been removed: [prblem]
3rd element has been removed: ['p', 'o, 'b', 'l', 'e', 'm']
3rd element has been removed: ('p', 'r', 'b', 'l', 'e', 'm')
Flag this Question
Question 581 pts
Describe the action being executed by the former code block:
HTML EditorKeyboard Shortcuts
From the list value of index 2 is been deleted.
Flag this Question
Question 591 pts
Select the appropriate output after running the following code block:
my_list=['p','r','o','b','l','e','m']
Document Page
# delete one item
del my_list[2]
# delete multiple items
del my_list[1:5]
print("Elements from index 1 until 4 have been removed: ",my_list)
Group of answer choices
Elements from index 1 until 4 have been removed: ['p', 'm']
Elements from index 1 until 4 have been removed: ('p', 'm')
Elements from index 1 until 4 have been removed: ['l','e','m']
Elements from index 1 until 4 have been removed: [lem]
Flag this Question
Question 601 pts
Describe the action being executed by the former code block:
HTML EditorKeyboard Shortcuts
After deletion of indexes only the first and last index remains
Flag this Question
Question 611 pts
Select the appropriate output after running the following code block:
my_list=['p','r','o','b','l','e','m']
my_list.remove('p')
print(my_list)
Group of answer choices

Paraphrase This Document

Need a fresh take? Get an instant paraphrase of this document with our AI Paraphraser
Document Page
None of these
['r', 'o', 'b', 'l', 'e', 'm']
roblem
('r', 'o', 'b', 'l', 'e', 'm')
Flag this Question
Question 621 pts
Describe the action being executed by the former code block:
Only element p removed from the list
my_list=['p','r','o','b','l','e','m']
my_list.remove('p')
print(my_list.pop(1))
Group of answer choices
'o'
'p'
p
o
Flag this Question
Question 631 pts
Describe the action being executed by the former code block:
HTML EditorKeyboard Shortcuts
after deleting ‘p’, o is at my_list[1].
Flag this Question
Question 641 pts
Select the appropriate output after running the following code block:
Document Page
my_list=['p','r','o','b','l','e','m']
my_list.remove('p')
my_list.pop(1)
my_list.pop()
print(my_list)
Group of answer choices
['r', 'b', 'l', 'e']
('r', 'b', 'l', 'e')
rble
'r', 'b', 'l', 'e'
Flag this Question
Question 651 pts
Describe the action being executed by the former code block:
HTML EditorKeyboard Shortcuts
my_list.remove('p')- ‘p’ deleted
my_list.pop(1) - ‘o’ removed
my_list.pop() - ‘m’ removed
Flag this Question
Question 661 pts
Select the appropriate output after running the following code block:
my_list=['p','r','o','b','l','e','m']
my_list[2:3]=[]
print(my_list)
Group of answer choices
Document Page
('p', 'r', 'b', 'l', 'e', 'm')
['p', 'r', 'b', 'l', 'e', 'm']
'p', 'r', 'b', 'l', 'e', 'm'
prblem
Flag this Question
Question 671 pts
Describe the action being executed by the former code block:
HTML EditorKeyboard Shortcuts
my_list[2:3]=[] - ‘o’ is replaced by null.
Flag this Question
Question 681 pts
Select the appropriate output after running the following code block:
my_list=['p','r','o','b','l','e','m']
my_list[2:3]=[]
my_list[2:5]=[]
print(my_list)
Group of answer choices
prm
('p', 'r', 'm')
['p', 'r', 'm']
'p', 'r', 'm'

Secure Best Marks with AI Grader

Need help grading? Try our AI Grader for instant feedback on your assignments.
Document Page
Flag this Question
Question 691 pts
Describe the action being executed by the former code block:
HTML EditorKeyboard Shortcuts
my_list[2:3]=[] - ‘o’ is removed
my_list[2:5]=[] - ‘b’,’l’,’e’ are removed
Flag this Question
Question 701 pts
Select the appropriate output after running the following code block:
my_list=['p','r','o','b','l','e','m']
my_list.clear()
print(my_list)
Group of answer choices
problem
['p','r','o','b','l','e','m']
()
[]
Flag this Question
Question 711 pts
Describe the action being executed by the former code block:
HTML EditorKeyboard Shortcuts
list.clear() function clears the whole list
Document Page
Flag this Question
Question 721 pts
Select the appropriate output after running the following code block:
# Intializing list 1
list1=[1,2,[3,5],4]
# using copy
list2 = list1
id(list1), id(list2)
Group of answer choices
object ID's are different
object ID's are the same
Flag this Question
Question 731 pts
Describe the action being executed by the former code block:
HTML EditorKeyboard Shortcuts
Both lists pointing to same memory loc.
Flag this Question
Question 741 pts
Select the appropriate output after running the following code block:
# importing "copy" for copy operations
import copy
# initializing list 1
list1=[1,2,[3,5],4]
Document Page
# using deepcopy to deepcopy
list2=copy.deepcopy(list1)
id(list1), id(list2)
Group of answer choices
object ID's are the same
object ID's are different
Flag this Question
Question 751 pts
Describe the action being executed by the former code block:
HTML EditorKeyboard Shortcuts
deepcopy() function copied list1 in different location and assigned to list2
Flag this Question
Question 761 pts
Select the appropriate output after running the following code block:
list1=[1,2,[3,5],4]
del(list1)
print(list1)
Group of answer choices
[1, 2, [3, 5], 4]
NameError: name 'list1' is not defined
None of these
Flag this Question
Question 771 pts
Describe the action being executed by the former code block:

Paraphrase This Document

Need a fresh take? Get an instant paraphrase of this document with our AI Paraphraser
Document Page
HTML EditorKeyboard Shortcuts
list1 after deletion no longer exists in memory
Flag this Question
Question 781 pts
Select the appropriate output after running the following code block:
list1=[1,2,[3,5],4]
list2=["Hello","World"]
print(list1 + list2)
Group of answer choices
['Hello', 'World']
list1 + list2
[1, 2, [3, 5], 4]
[1, 2, [3, 5], 4, 'Hello', 'World']
Flag this Question
Question 791 pts
Describe the action being executed by the former code block:
HTML EditorKeyboard Shortcuts
list2 is appended to list1
Flag this Question
Question 801 pts
Select the appropriate output after running the following code block:
odd=[1,3,5]
Document Page
print(odd+[9,7,5])
Group of answer choices
[1, 3, 5]
[9, 7, 5]
None of these
[1, 3, 5, 9, 7, 5]
Flag this Question
Question 811 pts
Describe the action being executed by the former code block:
HTML EditorKeyboard Shortcuts
[9,7,5] as a list is appended to odd list
Flag this Question
Question 821 pts
Select the appropriate output after running the following code block:
aList=[1,2]
print(aList*3)
Group of answer choices
1, 2, 1, 2, 1, 2
[1, 2, 1, 2, 1, 2]
[1,2]
[1,2,3]
Flag this Question
Question 831 pts
Describe the action being executed by the former code block:
Document Page
HTML EditorKeyboard Shortcuts
aList is appended 3 times to itself like list append.
Flag this Question
Question 841 pts
Select the appropriate output after running the following code block:
print(["re"]*3)
Group of answer choices
['re']
["re"]*3
['re', 're', 're']
['re'3]
Flag this Question
Question 851 pts
Describe the action being executed by the former code block:
HTML EditorKeyboard Shortcuts
‘re’ is displayed 3 times as it is multiplied by 3
Flag this Question
Question 861 pts
Select the appropriate output after running the following code block:
list1=[1,2,[3,5],4]
print(2 in list1)
Group of answer choices
2

Secure Best Marks with AI Grader

Need help grading? Try our AI Grader for instant feedback on your assignments.
Document Page
False
2 in list1
True
Flag this Question
Question 871 pts
Describe the action being executed by the former code block:
HTML EditorKeyboard Shortcuts
Checks if 2 is in list or not.
Flag this Question
Question 881 pts
Select the appropriate output after running the following code block:
list1=[1,2,[3,5],4]
print([3] in list1)
Group of answer choices
False
[3] in list1
3
True
Flag this Question
Question 891 pts
Describe the action being executed by the former code block:
HTML EditorKeyboard Shortcuts
Checks if [3] is in list or not which is actually not.
Document Page
Flag this Question
Question 901 pts
Select the appropriate output after running the following code block:
list1=[1,2,[3,5],4]
list2=[1,2,4]
print(list1==list2)
Group of answer choices
True
[1,2,[3,5],4] [1,2,4]
list1==list2
False
Flag this Question
Question 911 pts
Describe the action being executed by the former code block:
HTML Editor
list1 is not equal list2
Flag this Question
Question 921 pts
Select the appropriate output after running the following code block:
list1=[1,2,[3,5],4]
for i in list1:
print(i)
Group of answer choices
None of these
Document Page
i
1 2 [3, 5] 4
list1
Flag this Question
Question 931 pts
Describe the action being executed by the former code block:
HTML Editor
Prints the contents of the list in the following manner-
1
2
[3,5]
4
Flag this Question
Question 941 pts
Select the appropriate output after running the following code block:
list1=[1,2,[3,5],4]
for i in list1:
print(i,end="")
Group of answer choices
list1
i,end=""
12[3, 5]4
i
Flag this Question
Question 951 pts
Describe the action being executed by the former code block:

Paraphrase This Document

Need a fresh take? Get an instant paraphrase of this document with our AI Paraphraser
Document Page
HTML Editor
Prints the list without spaces
Flag this Question
Question 961 pts
Select the appropriate output after running the following code block:
list1=[1,2,[3,5],4]
for i in list1:
print(i,end="\n")
Group of answer choices
i
None of these
i,end="\n"
1 2 [3, 5] 4
Flag this Question
Question 971 pts
Describe the action being executed by the former code block:
HTML Editor
Prints the contents of the list in the following manner-
1
2
[3,5]
4
Flag this Question
Question 981 pts
Select the appropriate output after running the following code block:
for fruit in['apple','banana','mango']:
Document Page
print("I like",fruit)
Group of answer choices
"I like",fruit
None of these
I like apple I like banana I like mango
['apple','banana','mango']
Flag this Question
Question 991 pts
Describe the action being executed by the former code block:
HTML Editor
It will print in the following manner-
I like apple
I like banana
I like mango
Flag this Question
Question 1001 pts
Select the appropriate output after running the following code block:
# vowels list
vowels=['e','a','u','o','i']
# sort the vowels
vowels.sort()
# Print vowels
print('sorted list:',vowels)
Group of answer choices
sorted list: ['a', 'e', 'i', 'o', 'u']
Document Page
'sorted list:',vowels
sorted list:['e', 'a', 'u', 'o', 'i']
None of these
Flag this Question
Question 1011 pts
Describe the action being executed by the former code block:
HTML Editor
sort() function sorts the list in lexicographical order.
Flag this Question
Question 1021 pts
Select the appropriate output after running the following code block:
# vowels list
vowels=['e','a','u','o','i']
# sort the vowels
sortedVowels=sorted(vowels)
# Print vowels
print('Sorted list:',sortedVowels)
Group of answer choices
None of these
'Sorted list:',sortedVowels
Sorted list: ['e', 'a', 'u', 'o', 'i']
Sorted list: ['a', 'e', 'i', 'o', 'u']
Flag this Question
Question 1031 pts

Secure Best Marks with AI Grader

Need help grading? Try our AI Grader for instant feedback on your assignments.
Document Page
Describe the action being executed by the former code block:
HTML Editor
sorted() function will sorts the list and assigns to new list.
Flag this Question
Question 1041 pts
Select the appropriate output after running the following code block:
list1=['a','p','p','l','e']
print(list1.count('p'))
Group of answer choices
2
3
p
list1.count('p')
Flag this Question
Question 1051 pts
Describe the action being executed by the former code block:
HTML Editor
counts() function returns the number of p’s present in the list
Flag this Question
Question 1061 pts
Select the appropriate output after running the following code block:
list1=['a','p','p','l','e']
print(list1.index('p'))
Document Page
Group of answer choices
1,2
0
2
1
Flag this Question
Question 1071 pts
Describe the action being executed by the former code block:
HTML Editor
index() function searches for ‘p’ and return the first index of ‘p’.
1 out of 36
circle_padding
hide_on_mobile
zoom_out_icon
[object Object]

Your All-in-One AI-Powered Toolkit for Academic Success.

Available 24*7 on WhatsApp / Email

[object Object]