79775696

Date: 2025-09-26 09:23:33
Score: 1
Natty:
Report link

you can covert it via a nested list comprehension

import numpy as np
array = np.array([list[row][col] for row in range(len(list)) for col in range(len(list[row]))])
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Manfred Weis