Computer Science, asked by truhella, 5 months ago

x=[25,2,5,58,8,99,4]

y=5

for i in x:

if (i%2==5 or i%3==0 or i%4==2):

print(i+y,end='-o-')

else:

print(i-y)​

Answers

Answered by ankush975430
1

x=[25,2,5,58,8,99,4]

y=5

for i in x:

if (i%2==5 or i%3==0 or i%4==2):

print(i+y,end='-o-')

else:

print(i-y)

Answered by nayasa22
0

x=[25,2,5,58,8,99,4];

y=5;

for i in x:

if(i%2==5 || i%3==0 || i%4==2)

print(i+y"end=-o-");

else

print(i-y);

After all these corrections the program is ready for execution...

Hope it helps...

Similar questions