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'})
集合的
答案 0 :(得分:0)
这个例子对我有用:
a = 1
b = 2
c = 3
mydict = {a : "a_", b : "b_", c : "c_"}
我已经声明了一些具有上述某些值的变量。
>>> mydict[1]
'a_'
>>> mydict[b]
'b_'
我能够使用变量名或值访问字典中的值。