언어별 괄호 연산자

1 개념[ | ]

언어별 괄호 연산자의 의미 이해
괄호 우리말 명칭 영어 명칭 PHP JavaScript Python
[ ] 대괄호 brakets ("square brackets") 배열 객체 리스트
{ } 중괄호 braces ("curly braces") · 객체 딕셔너리
( ) 소괄호 parentheses · · 튜플

2 PHP[ | ]

echo typeof( [] ); # array
echo typeof( {} ); # PHP Parse error: syntax error, unexpected '{'
echo typeof( () ); # PHP Parse error: syntax error, unexpected ')'
배열
$names = ["jmnote", "John"];
var_dump($names); // array(2) { [0]=> string(6) "jmnote" [1]=> string(4) "John" }

3 JavaScript[ | ]

console.log( typeof [] ); // object
console.log( typeof {} ); // object
console.log( typeof () ); // Uncaught SyntaxError: Unexpected token )
객체(리스트)
var names = ["jmnote", "John"];
console.log(names); // ["jmnote", "John"]
객체(딕셔너리)
var person = {name:"John", age:"30"};
console.log(person); // Object {name: "John", age: "30"}

4 Python[ | ]

print( type( [] ) ) # <class 'list'>
print( type( {} ) ) # <class 'dict'>
print( type( () ) ) # <class 'tuple'>
리스트
squares = [1, 4, 9, 16, 25]
딕셔너리
students = {"Jmnote":1, "John":2}
튜플[1])
week = ("Mon", "Tue", "Wed", "Thu", "Fri", "Sat")

5 같이 보기[ | ]

6 주석[ | ]

  1. 이뮤터블(생성 후 값 할당 불가능)
문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}