fork download
  1. # your code goes here
  2. import numpy as np
  3. a=np.linspace(3,4,10)
  4. print(a)
  5. a=np.linspace(1,2,8)
  6. print(a)
Success #stdin #stdout 0.23s 26752KB
stdin
Standard input is empty
stdout
[3.         3.11111111 3.22222222 3.33333333 3.44444444 3.55555556
 3.66666667 3.77777778 3.88888889 4.        ]
[1.         1.14285714 1.28571429 1.42857143 1.57142857 1.71428571
 1.85714286 2.        ]