You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

example2.py 164B

123456789
  1. import numpy as np
  2. a = np.array([5, 10, 15, 20, 25]) # Create a rank 1 array
  3. b = a / 5
  4. print("with numpy: a = {} b = {} \n".format(a,b))
  5. import sys
  6. sys.exit()