PATH: //opt/cloudlinux/venv/lib/python3.11/site-packages/numpy/typing/tests/data/pass
FILE_BARU
CREATE
FOLDER_BARU
MKDIR
UPLOAD_FILE
GO
[ .. KEMBALI ]
📁 __pycache__/
X
📄 arithmetic.py
↓
X
📄 array_constructors.py
↓
X
📄 array_like.py
↓
X
📄 arrayprint.py
↓
X
📄 arrayterator.py
↓
X
📄 bitwise_ops.py
↓
X
📄 comparisons.py
↓
X
📄 dtype.py
↓
X
📄 einsumfunc.py
↓
X
📄 flatiter.py
↓
X
📄 fromnumeric.py
↓
X
📄 index_tricks.py
↓
X
📄 lib_utils.py
↓
X
📄 lib_version.py
↓
X
📄 literal.py
↓
X
📄 mod.py
↓
X
📄 modules.py
↓
X
📄 multiarray.py
↓
X
📄 ndarray_conversion.py
↓
X
📄 ndarray_misc.py
↓
X
📄 ndarray_shape_manipulation.py
↓
X
📄 numeric.py
↓
X
📄 numerictypes.py
↓
X
📄 random.py
↓
X
📄 scalars.py
↓
X
📄 simple.py
↓
X
📄 simple_py3.py
↓
X
📄 ufunc_config.py
↓
X
📄 ufunclike.py
↓
X
📄 ufuncs.py
↓
X
📄 warnings_and_errors.py
↓
X
SAVING...
BERHASIL DIUBAH!
EDITING: arrayterator.py
from __future__ import annotations from typing import Any import numpy as np AR_i8: np.ndarray[Any, np.dtype[np.int_]] = np.arange(10) ar_iter = np.lib.Arrayterator(AR_i8) ar_iter.var ar_iter.buf_size ar_iter.start ar_iter.stop ar_iter.step ar_iter.shape ar_iter.flat ar_iter.__array__() for i in ar_iter: pass ar_iter[0] ar_iter[...] ar_iter[:] ar_iter[0, 0, 0] ar_iter[..., 0, :]
SIMPAN PERUBAHAN