Python全栈最全学习之路-Python基础(五)
函数一、 函数的定义与调用 思考一:上节课作业我们判断了一个字符串是不是手机号,但是它只能判断一次,如果有很多需要判断怎么办呢?函数的定义与调用str_a = '13323235656'if str_a.isdigit() and len(str_a) == 11: print('ok')else: print('error')把上面所实现的程序用函数来写def func_1(phone_number): if phone_number.isdigit() and len(ph