print
(',,'
.format
('aaa',22
))# 通過位置傳遞,相當方便,可以重複,可以換位置。
print
(': '
.format
(age=
22,name=
'aaa'))
# 通過關鍵字傳遞。
a =(
'google'
,'com'
)print
("."
.format
(a))
#傳遞元組索引傳遞
輸出
22
,aaa,
22aaa:
22google.com
***repl closed**
*
另乙個例子,其中還包含了json檔案的處理
from __future__ import
(absolute_import,division,print_function,unicode_literals)
try:
from urllib2 import urlopen
except importerror:
from urllib.request import urlopen
import json
filename =
'btc_close_2017.json'
with
open
(filename)
as f:
btc_data = json.load(f)
#字串轉成字典
for btc_dict in btc_data:
date = btc_dict[
'date'
] month = btc_dict[
'month'
] week = btc_dict[
'week'
] weekday = btc_dict[
'weekday'
] close = btc_dict[
'close'
]print
("{} is month {} week {},{},the close price is {} rmb"
.format
(date,month,week,weekday,close)
)
輸出:
Hibernate 小知識點
今天比較忙沒怎麼寫 知識一些曉得知識或是經驗吧!1.lazy延遲載入 也可以說是需要的時候再區載入 場景 乙個類如person和address,person可以通過getaddress 來得到address的set集合.有乙個dao控制類operation.方法public person query...
dom 小知識點
1 classname屬性可設定或返回元素的 class 屬性。function getclass document.getelementbyid d1 classname bbb alert document.getelementbyid d1 classname 2 removechild 刪除...
小知識點 備查
1,kermit c 安裝 sudo apt get install ckermit 開啟串列埠 在終端裡執行 sudo kermit c 命令 關閉串列埠 先同時按住 ctrl 和 鍵,然後鬆開再按 c 鍵,最後輸入 exit 或者q鍵 並回車 2,g sensor android加速度感測器型別...