Skip to content

Instantly share code, notes, and snippets.

@gncll
Created August 13, 2022 05:30
import numpy as np
number = input()
first = number.split()
second = [int(c) for c in first]
third = np.array(second)
fourth = third.reshape(3,3)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment