"함수 unset()"의 두 판 사이의 차이

26번째 줄: 26번째 줄:
==같이 보기==
==같이 보기==
*[[new dictionary]]
*[[new dictionary]]
*[[remove]]

2014년 5월 23일 (금) 17:25 판

del

1 PHP

$fruits = array( 'a'=>'apple', 'b'=>'banana', 'c'=>'cranberry' );
unset($fruits['b']);
print_r($fruits);
// Array
// (
//     [a] => apple
//     [c] => cranberry
// )

2 Python

fruits = { 'a' : 'apple', 'b' : 'banana', 'c': 'cranberry' }
del fruits['b']
print fruits
# {'a': 'apple', 'c': 'cranberry'}

3 같이 보기

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}