刚开始想出Python.我已经阅读了这个问题及其回答:
Is it true that I can’t use curly braces in Python?
我仍然无法理解大括号是如何工作的,特别是因为像简单程序这样的页面:
http://wiki.python.org/moin/SimplePrograms
在整个地方使用花括号.我理解方括号和常规弯曲括号,但我不知道“定义词典”是什么意思或它们应该代表什么.
解决方法:
Python中使用“Curly Braces”来定义字典.字典是将一个值映射到另一个值的数据结构 – 有点像英语字典如何将单词映射到其定义.
Python:
dict = {
"a" : "Apple",
"b" : "Banana",
}
它们也用于格式化字符串,而不是使用%的旧C样式,如:
ds = ['a', 'b', 'c', 'd']
x = ['has_{} 1'.format(d) for d in ds]
print x
['has_a 1', 'has_b 1', 'has_c 1', 'has_d 1']
它们不用于表示代码块,因为它们是许多“类C”语言.
C:
if (condition) {
// do this
}