Example for String type is added

pull/471/head
Rupa-Rd 2024-05-20 22:56:17 +05:30
rodzic 26a0dc814d
commit cf4a924c0e
1 zmienionych plików z 18 dodań i 2 usunięć

Wyświetl plik

@ -166,6 +166,15 @@ The `datetime64()` is used to define the date, month and year.
```
## Example for string type
``` python
import numpy as np
arr = np.str_("roopa")
print(arr.dtype)
# Output: <U5
```
## Example for object type
``` python
@ -181,7 +190,15 @@ The `datetime64()` is used to define the date, month and year.
# object
```
## Example for unicode string type
``` python
import numpy as np
arr = np.array(['apple', 'banana', 'cherry'])
print(arr.dtype)
# Output: <U6
```
## Example for timedelta type
The `timedelta64()` used to find the difference between the `datetime64()`. The arguments for timedelta64 are a number, to represent the number of units, and a date/time unit, such as (D)ay, (M)onth, (Y)ear, (h)ours, (m)inutes, or (s)econds. The timedelta64 data type also accepts the string “NAT” in place of the number for a “Not A Time” value.
@ -199,5 +216,4 @@ The `timedelta64()` used to find the difference between the `datetime64()`. The
# 366 days
# timedelta64[D]
```
# Data Type Conversion
# Data Type Conversion