當前位置:成語大全網 - 新華字典 - python字典鍵中含有變量怎麽查詢值

python字典鍵中含有變量怎麽查詢值

#?-*-?coding:utf-8?-*-

price?=?{"product(1)":"100",?"product(2)":"58",?"product(3)":"20.8",}

def?product(num):

"get?price"

get_price?=?"product(%d)"?%?num

print?price[get_price]

button?=?raw_input("輸入壹個數字:?")

product(button)

product(1)?#?100

這是其中壹個方式