如何使用变量作为字典键?

时间:2019-06-30 06:21:01

标签: python mongodb dictionary pymongo

coming_monday = today + datetime.timedelta(days=-today.weekday(), weeks=1)
month = coming_monday.strftime("%B")
collection = db['empmain']
record = collection.find_one({'Availablity.<want to pass in the month variable here'})
集合的

格式: enter image description here

1 个答案:

答案 0 :(得分:0)

这个例子对我有用:

a = 1
b = 2
c = 3
mydict = {a : "a_", b : "b_", c : "c_"}

我已经声明了一些具有上述某些值的变量。

>>> mydict[1]
'a_'
>>> mydict[b]
'b_'

我能够使用变量名或值访问字典中的值。