Fill in the blanks to create a list and print its 3rd element. | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
- 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[ ])

16th Jun 2018, 8:41 AM
Molu
22 Answers
+ 6
Can anyone explain why? Cause you don't learn if you just copy answers
30th Jun 2020, 9:07 AM
Amani TC
Amani TC - avatar
+ 4
list = [42, 55, 67] print(list[2])
15th Sep 2020, 7:03 AM
Divya Peddapalyam
Divya Peddapalyam - avatar
+ 3
1. list = () 2. dictionary = {} 3. tuple = () is is correct answer in logic
2nd Mar 2021, 4:14 PM
v manojbabu
v manojbabu - avatar
+ 2
here is the correct answer: list = [42, 55, 67] print(list[2])
29th Jun 2022, 11:19 AM
Hamza Limam Eibba
Hamza Limam Eibba - avatar
+ 1
list = [ 42, 55, 67 ] print(list[2])
16th Jun 2018, 8:50 AM
Raj Chhatrala
Raj Chhatrala - avatar
+ 1
Fill in the blanks to create a list, dictionary, and tuple:
8th Dec 2020, 5:43 PM
Abdelmoula Ezzaouia
Abdelmoula Ezzaouia - avatar
0
list = [42, 55, 67] print(list[0])
25th Jul 2018, 5:33 PM
Pamotei Emotonha
0
print(list[2])
13th Jul 2019, 1:07 PM
jyothi swaroop m
0
answer please
5th Aug 2019, 2:49 AM
Marcus Morales
Marcus Morales - avatar
0
Correct answer is: list = [ 42, 55, 67] print(list[2 ])
2nd May 2020, 7:56 AM
Gaurav Bharat Patil
Gaurav Bharat Patil - avatar
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"
12th May 2020, 11:51 PM
mennad sofiane
mennad sofiane - avatar
0
list-[] dictonary-{} tuple-()
4th Jun 2020, 8:23 AM
S.Uma Maheshwari
0
list-[] dictonary-{} tuple-()
6th Oct 2020, 12:28 PM
Shravani Jogu
Shravani Jogu - avatar
0
list = [42, 55, 67] print(list[2])
22nd Jan 2021, 9:54 PM
Amr Al-najjar
0
Fill in the blanks to create a list and print its 3rd element. ist = [42, 55, 67] print(list[2])
18th Feb 2021, 6:50 PM
Syed Fahad Ahmed
Syed Fahad Ahmed - avatar
0
1. [ 2. 2
27th Aug 2021, 1:56 PM
PRINCE KUMAR
PRINCE KUMAR - avatar
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.
19th Nov 2021, 4:08 AM
Anish Krishnamurthy
Anish Krishnamurthy - avatar
0
Can someone explain? How do you get 2, im so confused
22nd Jan 2022, 3:25 PM
Maryam Ahmed
Maryam Ahmed - avatar
0
Fill in the blanks to define a valid numpy array and output its 3rd element:
17th Jan 2023, 11:37 AM
Sana Aamir
0
{}
22nd Feb 2023, 10:31 AM
kanagarasa Kalaiyarasy
kanagarasa  Kalaiyarasy - avatar