61. Which of these functions converts a value to a string?
62. What is the result of: print(bool('False'))?
63. What is the output of: print(10 / 2)?
64. How do you write an inline if statement in Python?
65. Which of the following is a valid Python boolean?
66. What is the correct way to define a tuple?
67. How do you check the length of a list `mylist`?
68. Which of the following opens a file for writing?
69. Which function returns the smallest item in an iterable?
70. What is the output of: print(2 + 3 * 4)?