You can download this code by clicking the button below.
This code is now available for download.
Pack multiple iterable objects into tuples and return an iterator. Each element of the iterator is a tuple, where the elements of the tuple come from the corresponding iterable objects.
Technology Stack : zip function
Code Type : Function
Code Difficulty :
def zip(*args):
"""
将可迭代对象打包成元组,并返回迭代器。
"""
iterator = iter(args)
return zip(*args)