7 lines
64 B
Python
7 lines
64 B
Python
import numpy as np
|
|
|
|
n = 4
|
|
m = -1
|
|
|
|
print("%s * x + %s" % (m, n))
|