+ 1
Equation with icognits
How can i make an equation a with icognits in py3 like: t = t² + 2t + 5 it asks me what is the value of 't', that i discover using this equation and i need to find this value.
5 Réponses
+ 6
Tried this?
def f(t):
return t**2 + 2*t + 5
+ 3
Pedro Nunes just the name of the function.
0
THANK YOUUUUUUUUUU
0
wait, what that single "f" means?
0
okay thank you very muchhh