Chapter 9 For loops and while loops.

Many times we want to loop though the data for perform opperations. For this we can use for loops.

## [1] "Player Name: Player01"
## [1] "Player Name: Player02"
## [1] "Player Name: Player03"
## [1] "Player Name: PlayerNew"
## [1] "Player Name: Player05"

We can also do this using a while loop. A while loop continues until a certain contiditon is met.

## [1] "Player Name: Player01"
## [1] "Player Name: Player02"
## [1] "Player Name: Player03"
## [1] "Player Name: PlayerNew"
## [1] "Player Name: Player05"