I need to get output in my jupyter notebook code in a table. Here is my code.
import numpy as np
for x in range(1,1000):
y=2*x+3
print(x,y)
I get the output like below.
I need it in a table with column names "x" and "y". When I scroll down, the column names should be visible.
Thank You.