Python Test 5 - Lists

Which of the following commands will create a list?

What is the output when we execute list(“hello”)?

Suppose listExample is [‘h’,’e’,’l’,’l’,’o’], what is len(listExample)?

Suppose list1 is [2445,133,12454,123], what is max(list1)?

Suppose list1 is [3, 5, 25, 1, 3], what is min(list1)?

Suppose list1 is [1, 5, 9], what is sum(list1)?

To shuffle the list(say list1) what function do we use?

Suppose list1 is [4, 2, 2, 4, 5, 2, 1, 0], Which of the following is correct syntax for slicing operation?

Suppose list1 is [2, 33, 222, 14, 25], What is list1[-1]?

Suppose list1 is [2, 33, 222, 14, 25], What is list1[:-1]?

Schreibe einen Kommentar