Python – 列表中冒号的语法错误

Python – 列表中冒号的语法错误,第1张

概述我一直在尝试创建一个简单的字典来定义用户输入的单词.在定义字典及其单词后,我正在尝试打印输入单词的定义.出于某种原因,当我尝试运行此程序时,列表中的冒号出现语法错误.我不知道如何解决这个问题,我知道有更简单的方法可以做到这一点,但我正在尝试使用列表.  这是迄今为止的代码: 字典 dic1 = [ 'bug':'A broken piece of code that causes a pr 我一直在尝试创建一个简单的字典来定义用户输入的单词.在定义字典及其单词后,我正在尝试打印输入单词的定义.出于某种原因,当我尝试运行此程序时,列表中的冒号出现语法错误.我不知道如何解决这个问题,我知道有更简单的方法可以做到这一点,但我正在尝试使用列表.
 这是迄今为止的代码:

字典

dic1 = [    'BUG':'A broken pIEce of code that causes a program to stop functioning'    'string':'A pIEce of text'    'integer':'A whole number'    'float':'A decimal number'    'function':'A block of organized and clean code that performs a task/action'    'Syntax':'A set of rules that says how a program will be coded'          ]q = input("What Coding related word do you want defined?")if q in dic1:    print(dic1[q])
解决方法 你在dict的每个条目末尾都忘了一个逗号. Dicts使用花括号“{…}”

dic1 = {    'BUG':'A broken pIEce of code that causes a program to stop functioning','string':'A pIEce of text','integer':'A whole number','float':'A decimal number','function':'A block of organized and clean code that performs a task/action','Syntax':'A set of rules that says how a program will be coded',}
总结

以上是内存溢出为你收集整理的Python – 列表中冒号的语法错误全部内容,希望文章能够帮你解决Python – 列表中冒号的语法错误所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/1192943.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-03
下一篇 2022-06-03

发表评论

登录后才能评论

评论列表(0条)

保存