fork download
  1. # your code goes here
  2. import numpy as np
  3. from numpy import linalg as LA
  4.  
  5. #print np.sqrt(2)
  6. ar=[3,-4]
  7. print LA.norm(ar)
  8. print ar[1]
Success #stdin #stdout 0.02s 83072KB
stdin
Standard input is empty
stdout
5.0
-4