Python/List: Difference between revisions
< Python
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
| Line 10: | Line 10: | ||
| NumPy || | | NumPy || | ||
<source lang="python"> | <source lang="python"> | ||
import numpy as np | |||
a = np.int32([1, 2, 3, 4]) | a = np.int32([1, 2, 3, 4]) | ||
b = np.int64([1, 2, 3, 4]) | b = np.int64([1, 2, 3, 4]) | ||
Revision as of 03:09, 29 June 2018
| TODO | Code |
|---|---|
| List with indices. |
for idx, item in enumerate(items):
print(idx, val)
|
| NumPy |
import numpy as np
a = np.int32([1, 2, 3, 4])
b = np.int64([1, 2, 3, 4])
c = np.float32([1.0, 2.0, 3.0, 4.0])
d = np.float64([1.0, 2.0, 3.0, 4.0])
a.tolist()
|