kopia lustrzana https://github.com/animator/learn-python
NumPy datatypes list is added
rodzic
d314d760af
commit
2e33a9b997
|
@ -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
|
Ładowanie…
Reference in New Issue