import numpy as np
x = np.linspace(0, 2, 100)
print(x)
import numpy as np
# np.linspace(start, stop, num=50, endpoint=True, retstep=False, dtype=None)
x = np.linspace(0, 100, 10, False, True, dtype=float)
print(x)
import numpy as np
x = np.linspace(0, 2, 100)
print(x)
import numpy as np
# np.linspace(start, stop, num=50, endpoint=True, retstep=False, dtype=None)
x = np.linspace(0, 100, 10, False, True, dtype=float)
print(x)