From 2e33a9b997189dc81f0dc73abd1f0c8ff8793cf0 Mon Sep 17 00:00:00 2001 From: Rupa-Rd Date: Mon, 20 May 2024 21:47:17 +0530 Subject: [PATCH] NumPy datatypes list is added --- contrib/numpy/datatypes.md | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 contrib/numpy/datatypes.md diff --git a/contrib/numpy/datatypes.md b/contrib/numpy/datatypes.md new file mode 100644 index 0000000..768add1 --- /dev/null +++ b/contrib/numpy/datatypes.md @@ -0,0 +1,35 @@ +# Numpy Data Types +In NumPy, data types play a crcial role in representing and manipulating numerical data. + +Numpy supports the following data types: + +- `i` - integer +- `b` - boolean +- `u` - unsigned integer +- `f` - float +- `c` - complex float +- `m` - timedelta +- `M` - datetime +- `O` - object +- `S` - string +- `U` - unicode string + +## Example for integer type + +## Example for float type + +## Example for boolean type + +## Example for unsigned integer type + +## Example for complex type + +## Example for datetime type + +## Example for string type + +## Example for object type + +## Example for unicode string type + +## Example for timedelta type