Please enable JavaScript.
Coggle requires JavaScript to display documents.
Python - Coggle Diagram
Python
Grammer
-
-
-
-
-
-
input output
-
pickle
pickle.dump(data1, output)
-
data type
string
-
-
-
-
"我叫 %s 今年 %d 岁!" % ('小明', 10)
-
-
-
-
Dictionary(字典)
dict([('Runoob', 1), ('Google', 2), ('Taobao', 3)])
dict(Runoob=1, Google=2, Taobao=3)
-
-
-
-
-