-1
我認爲%
(模)從部門返回餘留,但看到這段代碼,現在我很困惑。'string%variables`中的%運算符是什麼?
下面的代碼:
prices = {
"banana" : 4,
"apple" : 2,
"orange" : 1.5,
"pear" : 3
}
stock = {
"banana" : 6,
"apple" : 0,
"orange" : 32,
"pear" : 15
}
for key in prices:
print key
print "price: %s" % prices[key]
print "stock: %s" % stock[key]
我的問題是關於具體的最後3行。 %
在這裏做什麼?
這是一個格式說明符:有關一些解釋和示例,請參閱https://docs.python.org/2/library/stdtypes.html#string-formatting-operations –
請參閱:https:/ /pyformat.info/ – andpei