list에 자주 사용되는 함수들을 알아봅시다. car, nth, xCoord 이런 것들과 cons, append까지~;# 리스트 만들기list(1 2 3)(1 2 3)`(1 2 3)(1 2 3)temp_list = list(1 2 3)(1 2 3)temp_list(1 2 3);# 리스트 인지 판단listp(temp_list)t ;# 리스트 앞쪽에 연결cons(0 temp_list)(0 1 2 3) ;# 리스트 뒤에 리스트 연결append(temp_list list(4))(1 2 3 4)append(temp_list list(4 5))(1 2 3 4 5) ;# 리스트 뒤에 원소 연결append1(temp_list 4)(1 2 3 4);# 리스트의 첫번째 값car(temp_list)1nth(0 temp_li..