Question 61

Which of the following invocations are valid? (Select two answers)
  • Question 62

    How many elements will the list2 list contain after execution of the following snippet?
    list1 = [False for i in range (1, 10) ]
    list2 = list1 [-1:1:-1]
  • Question 63

    What is true about Python packages? (Select two answers)
  • Question 64

    What is the expected behavior of the following code?
  • Question 65

    You are going to read just one character from a stream called s. Which statement would you use?