Learn practical skills, build real-world projects, and advance your career
!pip install jovian --upgrade --quiet
import jovian
jovian.commit()
[jovian] Attempting to save notebook.. [jovian] Please enter your API key ( from https://jovian.ml/ ): API KEY: ········ [jovian] Updating notebook "codenoob/numpy" on https://jovian.ml/ [jovian] Uploading notebook.. [jovian] Capturing environment.. [jovian] Committed successfully! https://jovian.ml/codenoob/numpy
import numpy as np
a = np.array(([1,2,3]), dtype = 'int32')
print(a)
[1 2 3]