for j in range (10, 6,-2) :
print(j*2)
Answers
Answered by
0
Answer:
20
16
Explanation:
20
16
Explanation:
Answered by
0
Answer:
For j=10
print (10*2)
For j=10-2=8
print (8*2)
Output :
20
16
If anyone need any help in python contact me
Similar questions