Predict the output of the following program:
numbers - [10, 20)
items-[ Chair', Table']
for x in numbers:
For y in items:
print(x, y)
Answers
Answered by
0
Answer:
ghhdyiiuuuícxccgblchk
Answered by
0
Answer:
10 Chair
10 Table
20 Chair
20 Table
Explanation:
numbers = [10, 20]
items = ["Chair", "Table"]
for x in numbers:
for y in items:
print(x, y)
OUTPUT
10 Chair
10 Table
20 Chair
20 Table
Similar questions