You can download this code by clicking the button below.
This code is now available for download.
This function takes two string arguments and returns a sequence of tuples, each containing the characters at corresponding positions.
Technology Stack : String
Code Type : String Handling Function
Code Difficulty : Intermediate
def zipping_strings(str1, str2):
return zip(str1, str2)