Sir.. Me video purthiga chudakapoyina.. Me manual efforts ki like vesthunna and subscriber ayeppoya sir..chaala neat ga ,baaga chepthunaru
@kasi33043 жыл бұрын
GOOD
@mrsmurf9113 жыл бұрын
@@kasi3304 Very Good
@geetapatil31993 жыл бұрын
👍🏻
@rojadsorum95152 жыл бұрын
what about geomspace please tell us about geomspace
@vishalmane31392 жыл бұрын
How to know 1 d or 2d
@DennySatyala4 ай бұрын
by using np.ndim
@DennySatyala4 ай бұрын
import numpy as np a1 = [[1,2,3],[4,5,6]] arr = np.array(a1) if arr.ndim == 0: print(arr) elif arr.ndim == 1: row = 1 col = arr.size for i in range(row): for j in range(col): print(arr[i][j], end = " ") print() else: size = arr.shape row = size[0] col = size[1] for i in range(row): for j in range(col): print(arr[i][j], end = " ") print()
@pointofview61612 жыл бұрын
Sir still we are not clarity on dimensions
@jubinthomas70412 жыл бұрын
ndim() can be used to find the dimension 1D - list inside a function 2D - list of the list inside a function 3D- list of list of list inside a function, with the addition of each list, comes an extra square bracket