for loop with string python c# code example
Example: for statement syntax C sharp
//this loop will repeat 4 times
for(int i=0; i<4; i++)
{
//do something
}
//this loop will repeat 4 times
for(int i=0; i<4; i++)
{
//do something
}