NEW
Font size
WorksheetsPython list
Total questions: 10
Worksheet time: 5mins
Select the right translation of the word “array”
Элемент
Массив
Мәні
Жол
Select the right translation of the word “value”
Шама
Көлем
Жылдамдық
Массив
Әр түрлі типтегі объектілерді жинауға арналған деректер құрылымы.
Индекс
Мәліметтер
Элемент
Тізім
List indices start at _______.
1
2
0
3
Select the right translation of the word “кірістіру”
insert
choose
output
Select the right translation of the word “кеңейту”
insert
extend
add
element
Which function uses to add elements to the list?
addition
multiplication
append
application
Which method is used to add multiple elements at the same time at the end of the list
extend
append
insert
addition
Which method is used to add element at the desired position?
extend
append
position
insert
Select the output of the program code:
List=['Python', 'List']
for i in range(1, 4):
List.append(i)
print(List)
['Python', 'List']
['Python', 'List', 1, 2, 3, 4]
['Python', 'List', 1, 2, 3]
['Python', 'List', 0, 1, 2, 3, 4]
