snowflake.snowpark.functions.arrays_zip¶
- snowflake.snowpark.functions.arrays_zip(*cols: Union[Column, str]) Column[source] (https://github.com/snowflakedb/snowpark-python/blob/v1.30.0/snowpark-python/src/snowflake/snowpark/functions.py#L5257-L5315)¶
Returns an array of structured objects, where the N-th object contains the N-th elements of the input arrays.
- Parameters:
cols – The columns to zip together.
- Returns:
A new array of structured objects.
- Examples::