Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Saving and Loading Arrays to/from Files | Getting into NumPy Basics
Getting into NumPy Basics
course content

Conteúdo do Curso

Getting into NumPy Basics

bookSaving and Loading Arrays to/from Files

NumPy offers a variety of functions for saving and loading numPy arrays to and from files, such as:

  • save(): Saves an array to a binary file in NumPy's .npy format;
  • savez(): Saves multiple arrays to a single compressed .npz file;
  • savetxt(): Saves an array to a text file;
  • load(): Loads an array from a binary file in NumPy's .npy format;
  • loadtxt(): Loads an array from a text file.

Tarefa

  1. Save the newly created array in NumPy's .npy format.
  2. Save the array to a text file.
  3. Load back in the array.

Congratulations!

Congratulations on completing this NumPy tutorial! You have gained substantial knowledge about handling arrays and matrices in Python, laying down a strong foundation for utilizing NumPy in your data processing and analysis endeavors.

Switch to desktopMude para o desktop para praticar no mundo realContinue de onde você está usando uma das opções abaixo
Tudo estava claro?

Como podemos melhorá-lo?

Obrigado pelo seu feedback!

NumPy offers a variety of functions for saving and loading numPy arrays to and from files, such as:

  • save(): Saves an array to a binary file in NumPy's .npy format;
  • savez(): Saves multiple arrays to a single compressed .npz file;
  • savetxt(): Saves an array to a text file;
  • load(): Loads an array from a binary file in NumPy's .npy format;
  • loadtxt(): Loads an array from a text file.

Tarefa

  1. Save the newly created array in NumPy's .npy format.
  2. Save the array to a text file.
  3. Load back in the array.

Congratulations!

Congratulations on completing this NumPy tutorial! You have gained substantial knowledge about handling arrays and matrices in Python, laying down a strong foundation for utilizing NumPy in your data processing and analysis endeavors.

Switch to desktopMude para o desktop para praticar no mundo realContinue de onde você está usando uma das opções abaixo
Seção 1. Capítulo 7
some-alt