Rewrite the following code of programs using for loop in python....
pls. help me fast.
Attachments:
Answers
Answered by
14
Explanation:
a)
a=int(input("")
for i in range(a,-1,-2):
print(a*i)
Attachments:
Answered by
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