摘要:
1、函数的位置传参 备注:函数按位置进行传参 2、函数默认值传参 备注: 默认值传参,如果无传参,传默认的,如果有传参,使用最新的传参 def fun_class(name ,sex='nv'): print('name:%s sex:%s'%(name,sex)) fun_class('zhaoz 阅读全文
摘要:
比如现在当条件是1就调用A函数,当条件是2就调用B函数等等,我们就可以定义一个字典,然后当满足字典的KEY,就调用对应得函数#对应得方法 def insert(): print("insert") def update(): print("update") def select(): print("select") def delete(): print("del... 阅读全文
摘要:
1、字符串纯数字 2、字符串数字+字母 按首字母进行比大小 3、字符串字母 阅读全文