Looking for Programing with Python / Programmation avec Python (202400-META-IDSI1121-BBA1) test answers and solutions? Browse our comprehensive collection of verified answers for Programing with Python / Programmation avec Python (202400-META-IDSI1121-BBA1) at moodle.essec.fr.
Get instant access to accurate answers and detailed explanations for your course questions. Our community-driven platform helps students succeed!
Z = np.arange(50)
Z = Z[::-1]
import numpy as np
z = np.array([[1, 2, 3], [4, 5, 6]])
z[1:, :1]
import numpy as np
z = np.array([[1, 2, 3], [4, 5, 6]])
z[1:, 2:]
import numpy as np
np_2d = np.array([[2,3],[4,5],[6,7]])
print(np_2d[1,1])
Z = np.arange(9).reshape(3, 3)
import numpy as np
x = np.array([[1, 2], [3, 4]])
y = np.array([[5, 6], [7, 8]])
(x*y+1)[1, 1]
Z = np.random.random((3,3,3))
Z = np.eye(3)
Get Unlimited Answers To Exam Questions - Install Crowdly Extension Now!