목록R (3)
못정함
for loop
웃기다C언어 찔끔 공부했다고C언어가 좋음 (?)R 너무 막무가내같음for (var in seq) { expr}cities for (city in cities) { if(nchar(city) == 3) { break } print(city) } *break를 쓰면 for문 전체를 빠져나온다한 번 막히면 뒤에 있는 다른 city들은 검사하지도 못함 for (city in cities) { if(nchar(city) == 3) { next } print(city) }*slightly different from break statementit skips the remainder of the code inside the for loop and proceeds to the next i..
R
2024. 9. 16. 00:43
DataCamp로 공부 중
ㅇ
R
2024. 9. 15. 01:19