import numpy
from numpy import arange
import math
s=0
for i in numpy.arange(0.1, 1.1, 0.1):
for j in range(1, 4, 1):
(math.cos(j * math.pi / 4)) * (math.pow(i, j) / math.factorial(j))
s +=
b= s+1
print('значение x',i,round(i,3),'сумма ряда',round(b,3))