From 53269a5ad335eb89bb768ca26165f447a3f46d22 Mon Sep 17 00:00:00 2001 From: Lingamuneni Santhosh Siddhardha <103999924+Santhosh-Siddhardha@users.noreply.github.com> Date: Sun, 19 May 2024 23:58:31 +0530 Subject: [PATCH] Update loading_arrays_from_files.md changed format --- contrib/numpy/loading_arrays_from_files.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/numpy/loading_arrays_from_files.md b/contrib/numpy/loading_arrays_from_files.md index bd3648f..85105a3 100644 --- a/contrib/numpy/loading_arrays_from_files.md +++ b/contrib/numpy/loading_arrays_from_files.md @@ -4,7 +4,7 @@ Scientific computing and data analysis require the critical feature of being abl ## Here are the methods available: ### 1. numpy.loadtxt(): -The loadtxt function allows you to load data from a text file.You can specify various parameters such as the file name, data type, delimiter, +The `loadtxt` function allows you to load data from a text file.You can specify various parameters such as the file name, data type, delimiter, and more. It reads the file line by line, splits it at the specified delimiter, and converts the values into an array. - #### Syntax: