소스 뷰어
import numpy as np

a = np.random.randint( 0, 10, 3 )
b = np.random.rand( 3 )
c = np.random.randn( 3 )
d = np.random.uniform( 1, 10, 3 )
e = np.random.normal( 5, 2, 3 )

# 배열 값 출력
print( "a =", a )
print( "b =", b )
print( "c =", c )
print( "d =", d )
print( "e =", e )
a = [7 1 4]
b = [0.88929247 0.90649888 0.40455989]
c = [ 1.15363234 -0.47735441 -0.01494584]
d = [8.88558362 7.30106662 9.42666393]
e = [4.10705876 5.42662071 5.56906291]
The Kernel crashed while executing code in the current cell or a previous cell. 

Please review the code in the cell(s) to identify a possible cause of the failure. 

Click <a href='https://aka.ms/vscodeJupyterKernelCrash'>here</a> for more info. 

View Jupyter <a href='command:jupyter.viewOutput'>log</a> for further details.