﻿from math import *
def f(x):
  return 0.3*x**3-1
def fprim(x):
  return 0.9*x**2
def newton(n):
  c=...
  for k in range(...):
    ...
  return c


