Anu wishes to prepare a program to display the value of numbers from 1 to 25. The program that Anu prepared is given below. There are some errors in it. Can you edit the errors?
s=0
for i in range(25):
s=s+i print(s)

Respuesta :

Answer:

Programming is a set of instructions i.e. Input given by the user to the computer to perform a particular task and give the desired result i.e. output.

Final Answer

‌s=0

for i in range(1,26):

s=s+ i

print(s)

Explanation:

IF THE ANSWER IS CORRECT THEN MARK A BRAINLEST

[tex]\tt s=0[/tex]

[tex]\tt for\: i\:in\:range(25)[/tex]

[tex]\tt p=s+i[/tex]

[tex]\tt print(p)[/tex]

we are done .

RELAXING NOICE
Relax