阔达铃铛

文章
5
资源
0
加入时间
2年10月21天

深度学习-开源框架了解(还在继续)

1.TensorFlow由google开源的深度学习框架。在Github中评星数很高,使用C++开发。 访问网址https://www.tensorflow.org/。2.CaffeGoogle发布的DeepDream项目的基础,使用C++开发。 访问网址http://caffe.berkeleyvision.org/。3.Theano编程语言使用Python。 访问网址http://w

Python中string.endswith()函数的基本使用

Python中string.endswith()函数的基本使用函数:endswith()作用:判断字符串是否以指定字符或子字符串结尾,常用于判断文件类型.语法:string.endswith(str, beg=[0,end=len(string)])或者写成:string[beg:end].endswith(str)参数说明:string: 被检测的字符串str: 指定的字符或者子字符串(可以使用元组,会逐一匹配)beg: 设置字符串检测的起始位置(可选,从左数起)end:

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