How can I plot points given by code?
I want to plot the points, that I get from the following code all together in one plot. How can I do that?
for x in range(11):
for y in range(ceil(0.5*(x+4)),(2*x-3)):
print (x,y,x+y-2)
Thanks