gpt4 book ai didi

python - 如何在Python中定义一组相关的变量?

转载 作者:太空宇宙 更新时间:2023-11-03 13:11:40 25 4
gpt4 key购买 nike

在 JavaScript 中,我喜欢在对象中定义我的变量,这样(至少对我来说)很清楚它的所有属性都是相关的。

例如:

var box = {
width: 100,
height: 200,
weight: 80
}

有没有办法在 python 中做类似的事情?

最佳答案

这在 python 中称为 dict 或 dictionary语法几乎相同:

box = {
'width': 100,
'height': 200,
'weight': 80
}

您稍后可以像这样访问这些值:

box['width']

关于python - 如何在Python中定义一组相关的变量?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42146417/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com