Thursday, September 15, 2022

GPT3

I asked gpt3 to write a function to transpose a matrix. Indeed a neat solution with a typo. def transpose(matrix): return [list(I) for i in zip(*matrix)]

No comments:

Python Terminal Animation for Waiting

A nice small tool for terminal animations from yaspin import yaspin with yaspin(): do_stuff()