Computer Science, asked by vishalb2004, 9 months ago

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 omshukla10sep200890
0

Answer:

ghhdyiiuuuícxccgblchk

Answered by ulandarichter91
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