- 14
Fill in the blanks to create a list and print its 3rd element.
Fill in the blanks to create a list and print its 3rd element. list = 42, 55, 67] print(list[ ])
22 ответов
+ 6
Can anyone explain why? Cause you don't learn if you just copy answers
+ 4
list = [42, 55, 67]
print(list[2])
+ 3
1. list = ()
2. dictionary = {}
3. tuple = ()
is is correct answer in logic
+ 2
here is the correct answer:
list = [42, 55, 67]
print(list[2])
+ 1
list = [ 42, 55, 67 ]
print(list[2])
+ 1
Fill in the blanks to create a list, dictionary, and tuple:
0
list = [42, 55, 67]
print(list[0])
0
print(list[2])
0
answer please
0
Correct answer is:
list = [ 42, 55, 67]
print(list[2 ])
0
Fill in the blanks to create a list, dictionary, and tuple:
# list
list =
"one", "two"
# dictionary
dict =
1:"one", 2:"two"
# tuple
tp =
"one", "two"
0
list-[]
dictonary-{}
tuple-()
0
list-[]
dictonary-{}
tuple-()
0
list = [42, 55, 67]
print(list[2])
0
Fill in the blanks to create a list and print its 3rd element.
ist = [42, 55, 67]
print(list[2])
0
1. [
2. 2
0
What is supposed to go in the first blank? Can someone please help me? I got the second blank right. I am confused about what I am supposed to put in the first bank for this problem.
0
Can someone explain? How do you get 2, im so confused
0
Fill in the blanks to define a valid numpy array and output its 3rd element:
0
{}