Python
FS_King
一期一会
展开
-
Pythonの勉強のメモーー002
lambda表达式(匿名函数) 不需要考虑函数的命名问题def ds(x): return2 * x + 1ds(5)g = lambda x : 2 * x + 1g(5)字典:键值对dict = {'a':'1','b':'2','c':'3'}dict['a']dict['b']dict['c']集合--元素值唯一(set)num = {1,2...原创 2020-01-27 15:52:02 · 193 阅读 · 0 评论 -
Pythonの勉強のメモーー001
BIF Built-In Function 内置函数 (比如print/eval)C中/是地板除,Python中/是真实的除法,//是地板除法Python数据类型之列表list = ['123', 456 , [123,'789']]list.append('228') //插入一个元素list.extend(['443','119']) //插入一...原创 2020-01-23 19:00:23 · 177 阅读 · 0 评论