Search
my_find(a,b)
a
b
my_replace(a,b,c)
c
len(s)
s[i]
i
s[i:j]
j
s[:j]
s[i:]
Ahoj
Cau
Konec
[ a_0, a_1, a_2, … , a_n ]
[1, 1, -2 ]
[0, 1, 0,-1 ]
[0,1,2]
[0,1,2,0]
[1,2,0]
printPoly
printPoly( [ 1, 1, 0, -2] )
1 + x - 2x^3
printPoly( [ -2, 0, 0, -2, 0, 0, 0] )
-2 - 2x^3
polyValue
polyValue([1,0,2], 4)
33
[0,2,-3]
[2,-6]