>>> m = {'a':1.1234, "b":"qq"}
>>> '%(a)1.1f %(a)s %(b)s' %m
'1.1 1.1234 qq'
>>> '{a:1.1f} {a:s} {b:s}'.format(m) # illegal, must use **m
Traceback (most recent call last):
File "", line 1, in
'{a:1.1f} {a:s} {b:s}'.format(m)
KeyError: 'a'
>>> '{a:1.1f} {a:s} {b:s}'.format(**m) # illegal, a is float type
Traceback (most recent call last):
File "", line 1, in
'{a:1.1f} {a:s} {b:s}'.format(**m)
ValueError: Unknown format code 's' for object of type 'float'
>>> '{a:1.1f} {b:s}'.format(**m)
'1.1 qq'
字串 format
帶入 dict 的值, 如果用 format api, dictionary 要帶 ** 去展開 key-value
訂閱:
張貼留言 (Atom)
別名演算法 Alias Method
題目 每個伺服器支援不同的 TPM (transaction per minute) 當 request 來的時候, 系統需要馬上根據 TPM 的能力隨機找到一個適合的 server. 雖然稱為 "隨機", 但還是需要有 TPM 作為權重. 解法 別名演算法...
-
spring.jpa.open-in-view spring boot 的 property, spring.jpa.open-in-view 預設是開啟的 開啟的話, OpenSessionInViewInterceptor 就會介入 收到 web request 的時候...
-
Introduction One day, Cassandra stop listening for thrift client until restart it manually. After checking Cassandra log, found it enco...
-
題目 每個伺服器支援不同的 TPM (transaction per minute) 當 request 來的時候, 系統需要馬上根據 TPM 的能力隨機找到一個適合的 server. 雖然稱為 "隨機", 但還是需要有 TPM 作為權重. 解法 別名演算法...
沒有留言:
張貼留言