datatypes.md modified

pull/471/head
Rupa-Rd 2024-05-20 23:23:29 +05:30
rodzic bfdd5dbc41
commit 4e36263a1c
1 zmienionych plików z 4 dodań i 1 usunięć

Wyświetl plik

@ -14,6 +14,9 @@ Numpy supports the following data types:
- `S` - string
- `U` - unicode string
_Referred from: W3schools_
## dtype() Function
The `dtype()` function returns the type of the NumPy array object.
@ -261,4 +264,4 @@ It creates a copy of the array and allows to specify the data type of our choice
# Output:
# [True True False] bool
```
```