Skip to content

Instantly share code, notes, and snippets.

@pranjalAI
Created September 7, 2022 18:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pranjalAI/ed3d82aa82d5ae2f409b0ddab3e9ebc5 to your computer and use it in GitHub Desktop.
Save pranjalAI/ed3d82aa82d5ae2f409b0ddab3e9ebc5 to your computer and use it in GitHub Desktop.
matrix=[(1,2,3),(4,5,6),(7,8,9),(10,11,12)]
t_matrix = zip(*matrix)
for row in t_matrix:
print(row)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment