You can download this code by clicking the button below.
This code is now available for download.
Combines multiple iterables into a list of tuples, padding shorter iterables with fillvalue if they are of unequal length.
Technology Stack : Combines multiple iterables into a list of tuples, padding shorter iterables with fillvalue if they are of unequal length.
Code Type : Function
Code Difficulty : Intermediate
def zip_longest(*iterables, fillvalue=None):
"""
Zip equal length sequences together, but allow longer sequences to be padded with fillvalue.
"""
# 使用itertools模块的zip_longest函数
from itertools import zip_longest
return list(zip_longest(*iterables, fillvalue=fillvalue))
# JSON格式输出