“Numpy” Kod odpowiedzi

Python, jak zrobić szereg tych

# Basic syntax:
np.ones((number_rows, number_cols), dtype=int)

# Example usage:
import numpy as np
np.ones((5, 3), dtype=int)
array([[1, 1, 1],
       [1, 1, 1],
       [1, 1, 1],
       [1, 1, 1],
       [1, 1, 1]])

# Note, use np.zeros to create an array of zeros
Charles-Alexandre Roy

Numpy

import numpy
print(numpy.ones((2, 3), dtype=int))
# creates the array of the shape (2, 3) of value 1 in its each cell
print(numpy.ones(6, dtype=str) 
# creates an array of size 6 with values of '1'
Ranger

Odpowiedzi podobne do “Numpy”

Pytania podobne do “Numpy”

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu