NumPy datatypes list is added

pull/471/head
Rupa-Rd 2024-05-20 21:47:17 +05:30
rodzic d314d760af
commit 2e33a9b997
1 zmienionych plików z 35 dodań i 0 usunięć

Wyświetl plik

@ -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