Learn Before
Concept

Data Types in NumPy

In python, there is already data types that it has by default such as boolean, float, integer, etc. However, NumPy offers additional data types:

  • i - integer
  • b - boolean
  • u - unsigned integer
  • f - float
  • c - complex float
  • m - time delta
  • M - date time
  • O - object
  • S - string
  • U - unicode String
  • V - fixed chunk of memory for other type (void)

0

2

Updated 2021-03-30

Tags

Python Programming Language

Data Science