for decrement python

Solutions on MaxInterview for for decrement python by the best coders in the world

showing results for - "for decrement python"
Mateo
26 Aug 2020
1for x in range(10,0,-1):
2    print(x)