Assume that we have n+1 data points (x0,y0),…,(xn,yn), with xi≠xj for i≠j. Then, there exists a unique polynomial f of degree ≤n such that f(xi)=yi for i=0,…,n. This is the Lagrange polynomial that interpolates the given data. In his answer, @dsejas has shown a method to compute it. In the current case, since n=3, the interpolating polynomial has degree ≤3; in fact, it is f(x)=x2.
If f(x)=a0+a1x+⋯+anxn, it follows from the interpolation conditions that the coefficients are the solution of the linear system Ax=b, where A=(xji) (the element of A at row i and column j is xji), b=(yi) and x is the vector of unknowns a0,…,an. This is not the best way to get a0,…,an, since A is usually an ill conditioned matrix. However, it is interesting to point out that from a theoretical viewpoint.
If one has m data points and still wants to fit them using a polynomial of degree n, with n≤m, the linear system Ax=b is overdetermined (there are more equations than unknowns). In such a case, one can perform a least squares fitting, trying to minimize the interpolation errors, that is, one seeks for the minimum of
E(a0,a1,…,an)=m∑i=0(f(xi)−yi)2.
The minimum is given by the solution of the linear system
∇E(a0,a1,…,an)=0,
which is simply ATAx=ATb. This is what @Cyrille, in fact, proposes in his answer... computing explicitly E(a0,a1,…,an) as well as its partial derivatives, which is completely unnecessary. In fact, if the system Ax=b has a unique solution, which is the case under discussion, the system ATAx=ATb yields exactly the same solution. So, the function in @Cyrille's answer is just the Lagrange polynomial already proposed by @dsejas.
There are functions to compute least squares approximations in libraries like Scipy. Anyway, for such a simple case as that considered here, the following (suboptimal) code may work. Please note that I have added some points to make the example a bit more interesting:
# Data
data = [(0,0), (0.2,0.3), (0.5,0.25), (0.6,0.36),
(1,1), (1.2, 1.3), (1.5,2.2), (1.7,3.1), (2,4)]
# Computation of a fitting polynomial of degree <=3
basis = vector([1, x, x^2, x^3])
A = matrix(len(data),len(basis),
[basis.subs(x=datum[0]) for datum in data])
b = vector([datum[1] for datum in data])
coefs = (transpose(A)*A)\(transpose(A)*b)
f(x) = coefs*basis
# Plot results
abcissae = [datum[0] for datum in data]
x1, x2 = min(abcissae), max(abcissae)
pl = plot(f(x), (x, x1, x2))
pl += points(data, color="red", size=20)
show(pl)
This code yields the following plot:

Of course, in addition to polynomial interpolation or fitting, there are many other methods which can be used.
There are essentially an infinite number of curves going through 5 points. But if you adjust say by mean squarre a polynomial of 5th degree it will run through this 5 points. Then you will have a function and you will be able to manipulate it.
Thanks for the comment. That obviously can be done and its interesting. I take it that the answer to the original question is no then?
I am trying to make the program but I have a problem for the optimization. I have ask a question and I wait for the answer
Thank you very much for the answer! so the work is in progress. That's an interesting approach.