- del
- unset
1 PHP
PHP
Copy
$fruits = array( 'a'=>'apple', 'b'=>'banana', 'c'=>'cranberry' );
unset($fruits['b']);
print_r($fruits);
// Array
// (
// [a] => apple
// [c] => cranberry
// )
2 Python
Python
Copy
fruits = { 'a' : 'apple', 'b' : 'banana', 'c': 'cranberry' }
del fruits['b']
print fruits
# {'a': 'apple', 'c': 'cranberry'}
3 같이 보기
편집자 Jmnote Jmnote bot
로그인하시면 댓글을 쓸 수 있습니다.