Computer Science, asked by Anonymous, 9 months ago

Rewrite the following code of programs using for loop in python....
pls. help me fast.​

Attachments:

Answers

Answered by RG416
14

Explanation:

a)

a=int(input("")

for i in range(a,-1,-2):

print(a*i)

Attachments:
Answered by shaguntyagi016
9

Answer:

(a) a=int (input("Enter a number"))

i=a

for i in range(a,2):

print(a*i)

Explanation:

this is the correct answer

plz mark me...

Similar questions