Python Module 9 Questions and
Answers Graded A+
Choose the best representation of the output expected for the following code.
cities = ["New York", "Shanghai", "Munich", "Tokyo", "Dubai", "Mexico City", "São
Paulo", "Hyderabad"]
for city in cities:
if city.startswith("P"):
print(city)elif city.startswith("D"):print(city) - ANSWER-Dubai
Choose the best representation of the output expected for the following code.
numbers = ""
for x in range(0,5,2):numbers += str(x)print(numbers) - ANSWER-024
Choose the best representation of the output expected for the following code.
numbers = ""
for x in range(2,8,2):numbers += str(x)print(numbers) - ANSWER-246
Choose the best representation of the output expected for the following code.
numbers = ""
for x in range(7):
numbers += str(x)
print(numbers) - ANSWER-0123456
Choose the item that best completes the following sentence:
"A Python list..." - ANSWER-can contain both strings and numbers together as list
items.
Choose the item that best completes the following sentence:
"After using an insert on a Python list..." - ANSWER-the length of the list increases by 1.
Choose the item that best completes the sentence:
"A Python list..." - ANSWER-can add items to the end of the list using the .append()
method.
In Python, range(0,5) is equivalent to the list [0, 1, 2, 3, 4]. - ANSWER-True
In the following for loop code, the variable name is "student" because it can only be
called "student" and cannot be replaced with another valid variable name such as
"pupil".
students = ["Alton", "Hiroto", "Skye", "Tobias"]
for student in students:
print("Hello", student) - ANSWER-False
Answers Graded A+
Choose the best representation of the output expected for the following code.
cities = ["New York", "Shanghai", "Munich", "Tokyo", "Dubai", "Mexico City", "São
Paulo", "Hyderabad"]
for city in cities:
if city.startswith("P"):
print(city)elif city.startswith("D"):print(city) - ANSWER-Dubai
Choose the best representation of the output expected for the following code.
numbers = ""
for x in range(0,5,2):numbers += str(x)print(numbers) - ANSWER-024
Choose the best representation of the output expected for the following code.
numbers = ""
for x in range(2,8,2):numbers += str(x)print(numbers) - ANSWER-246
Choose the best representation of the output expected for the following code.
numbers = ""
for x in range(7):
numbers += str(x)
print(numbers) - ANSWER-0123456
Choose the item that best completes the following sentence:
"A Python list..." - ANSWER-can contain both strings and numbers together as list
items.
Choose the item that best completes the following sentence:
"After using an insert on a Python list..." - ANSWER-the length of the list increases by 1.
Choose the item that best completes the sentence:
"A Python list..." - ANSWER-can add items to the end of the list using the .append()
method.
In Python, range(0,5) is equivalent to the list [0, 1, 2, 3, 4]. - ANSWER-True
In the following for loop code, the variable name is "student" because it can only be
called "student" and cannot be replaced with another valid variable name such as
"pupil".
students = ["Alton", "Hiroto", "Skye", "Tobias"]
for student in students:
print("Hello", student) - ANSWER-False