Thanks to visit codestin.com
Credit goes to www.scribd.com

0% found this document useful (0 votes)
5 views1 page

For Loop 1

The document outlines a Python programming assignment for the subject BTCOL406 at Gramin Technical And Management Campus Nanded. The aim is to print numbers in descending order from 10 to 2, using a for loop. The student, Bujwane Rohit Rajeshwar, has provided the code snippet to achieve this output.

Uploaded by

syediliyas8282
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
5 views1 page

For Loop 1

The document outlines a Python programming assignment for the subject BTCOL406 at Gramin Technical And Management Campus Nanded. The aim is to print numbers in descending order from 10 to 2, using a for loop. The student, Bujwane Rohit Rajeshwar, has provided the code snippet to achieve this output.

Uploaded by

syediliyas8282
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 1

BTCOL406 :-Python Programming

Gramin Technical And Management Campus Nanded


Department of computer Engineering (Degree)
Subject Name/code :- BTCOL406 Python Programming

Student Name :- Bujwane Rohit Rajeshwar PRN No :- 24025081245506

DOP:- 19/03/2025 DOC:- 21/03/2025

Aim :- print Numbers like 10 8 6 4 2

Input:-

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

print("numbers from 10 to 1 = ",i)

Output :-

For loop Page 1

You might also like