我正在阅读Zed Shaw的学习Python艰难之路教科书(LPTHW)。
当Zed创建词典时,他正在使用第二个括号创建它们。如:
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div class="input-group quantity-div">
<button type="button" class="pls altera" onclick="ModifyValue('testname', this)"> - </button>
<input type="text" name="quantity" value="1" class="inputbox">
<button type="button" class="pls altera increment" onclick="ModifyValue('newname', this)"> + </button>
</div>
这是一个图片示例,他使用字典为项目创建设置文件,使用第二个括号创建一个名为'config'的字典:
link : implementation of dictionary from his workbook
但是这给了我一个错误。我该如何解决?
答案 0 :(得分:1)
我已经弄明白了。出于一些奇怪的原因,Zed使用第二个括号来创建字典但是你应该使用大括号。希望这有助于其他人!
# Creating an empty dictionary
config = {}