Computer Science, asked by 20100246110072, 9 months ago

how we will run the program to get your name ten times using for loop in python​

Answers

Answered by SaHaBji07
0

Explanation:

loop will run until it reaches the stop condition, each time the loop runs, everything inside the curly brackets is executed. // This first statement will be explained soon. for ( var i=1; i<=10; i++){ I'm guessing that i++ is the same as writing i=i+1?

Similar questions