Combining lists

Report a typo

The numbers and word variables both contain iterables. Use the zip() function to print a list of tuples where each tuple contains one element from numbers and one from word.

The variables are already defined; you do not need to accept any input.

Write a program in Python 3
# please do not modify the following code
numbers, word = input().split()
numbers = list(numbers)

# your code here
___

Create a free account to access the full topic