Tutorials  /  Python

numpy.ones() in Python - Tutorial

Ccentron Redaktion · March 2024 ·3 min read ·Python, Tutorial

Python numpy.ones() function returns a new array of given shape and data type, where the element’s value is set to 1. This function is very similar to numpy zeros() function.

VM

Try it yourself: cloud servers from €3.12/month

ccloud³ VMs from German data centers – deployed in seconds, billed by the hour, with a €200 starting credit for new accounts. Launch a server →

numpy.ones() function arguments

The numpy.ones() function syntax is:

Code
ones(shape, dtype=None, order='C')

The shape is an int or tuple of ints to define the size of the array. If we just specify an int variable, a one-dimensional array will be returned. For a tuple of ints, the array of given shape will be returned.

The dtype is an optional parameter with default value as a float. It’s used to specify the data type of the array, for example, int.

The order defines the whether to store multi-dimensional array in row-major (C-style) or column-major (Fortran-style) order in memory.

Python numpy.ones() Examples

Let’s look at some examples of creating arrays using the numpy ones() function.

1. Creating one-dimensional array with ones

Python
import numpy as np

array_1d = np.ones(3)
print(array_1d)

Output:

Code
[1. 1. 1.]

Notice that the elements are having the default data type as the float. That’s why the ones are 1. in the array.

2. Creating Multi-dimensional array

Python
import numpy as np

array_2d = np.ones((2, 3))
print(array_2d)

Output:

Code
[[1. 1. 1.]
 [1. 1. 1.]]

3. NumPy ones array with int data type

Python
import numpy as np

array_2d_int = np.ones((2, 3), dtype=int)
print(array_2d_int)

Output:

Code
[[1 1 1]
 [1 1 1]]

4. NumPy Array with Tuple Data Type and Ones

We can specify the array elements as a tuple and specify their data types too.

Python
import numpy as np

array_mix_type = np.ones((2, 2), dtype=[('x', 'int'), ('y', 'float')])
print(array_mix_type)
print(array_mix_type.dtype)

Output:

Code
[[(1, 1.) (1, 1.)]
 [(1, 1.) (1, 1.)]]
[('x', '<i8'), ('y', '<f8')]
Jetzt 200 € Guthaben sichern

Testen Sie Ihr Setup auf ccloud³

Registrieren Sie sich in der ccloud³ und erhalten Sie 200 € Startguthaben für Ihr Projekt – z. B. für eine PostgreSQL-VM mit automatischen Backups.

centron Redaktion Technische Redaktion

Das Redaktionsteam von centron schreibt Anleitungen aus dem Betriebsalltag: getestet auf unserer eigenen Plattform, betrieben im Rechenzentrum in Hallstadt bei Bamberg.

Kategorie Python
Teilen
Noch offene Fragen?

Our team will help you with your specific setup - in German or English, by people who run the platform themselves.

War dieses Tutorial hilfreich?

Your answer is stored anonymously and helps us improve our tutorials.

Kommentare

No comments yet - be the first to ask a question about this tutorial.

Sign in to comment

Comments are open to centron customers. Sign in to your account to ask a question about this tutorial.

Weiterlesen

Das könnte Sie auch interessieren

Jetzt kostenlos anfangen

Melden Sie sich an und erhalten Sie in den ersten 60 Tagen ein Guthaben von 200 € bei centron.

Dieses Werbeangebot gilt nur für neue Konten. Angebot ausschließlich für Gewerbetreibende.

Jetzt loslegen Sales kontaktieren