"딕셔너리 for 루프"의 두 판 사이의 차이

11번째 줄: 11번째 줄:
{{참고|PHP 딕셔너리 for루프}}
{{참고|PHP 딕셔너리 for루프}}
<source lang='PHP'>
<source lang='PHP'>
<?php
$arr = [ 'id'=> 42, 'name'=>'John Smith', 'birthyear'=>2000 ];
foreach( $arr as $key => $value ) {
    echo "$key: $value\n";
}
# id: 42
# name: John Smith
# birthyear: 2000
</source>
</source>



2020년 2월 1일 (토) 14:51 판

1 JavaScript

2 PHP

<?php
$arr = [ 'id'=> 42, 'name'=>'John Smith', 'birthyear'=>2000 ];
foreach( $arr as $key => $value ) {
    echo "$key: $value\n";
}
# id: 42
# name: John Smith
# birthyear: 2000

3 Python

d = { 'id': 42, 'name': 'John Smith', 'birthyear': 2000 }
for key, value in d.items():
    print( key, ':', value )
# id : 42
# name : John Smith
# birthyear : 2000
문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}