5 lines
74 B
Python
5 lines
74 B
Python
import numpy as np
|
|
x = np.array(([1+2j], [2+3j]))
|
|
print(x/2)
|
|
|
|
print(2*3+1) |