Created
August 13, 2022 05:30
-
-
Save gncll/ae014805f46f30abda0bcc1b3dd5c8f7 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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