60个必备!用Python的一些日常高频写法,建议收藏备用!
一、 数字 1 求绝对值 绝对值或复数的模 In [1]: abs(-6) Out[1]: 6 2 进制转化 十进制转换为二进制: In [2]: bin(10) Out[2]: '0b1010' 十进制转换为八进制: In [3]: oct(9) Out[3]: '0o11' ...
搭建网站时报错:Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP
问题背景 今天在安装ecshop程序时,报错Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP 问题分析 翻译这个报错的意思如下:弃用...
php 出现Strict Standards: Only variables should be passed by reference in的解决方法
问题背景 今天安装ecshop的时候最上面出现了一个错误提示:Strict Standards: Only variables should be passed by reference in F:\www.xxxx.com\cls_template.php on line 418 原因分析 这个...
WampServer修改端口及菜单Localhost
一、修改Apache端口 1、在界面中选Apache,弹出隐藏菜单选项,打开配置文件httpd.conf; 或者直接在安装目录下:E:\wamp\bin\apache\Apache2.2.21\conf,找到httpd.conf 2、找到 Listen 80...
Jmeter异常:请求参数为中文时要勾选编码!
问题背景 今天在用jmeter写接口时,写了一个接口,我配置信息都是正确的,可以请求还是失败了。 原因分析 1.查看结果树,查看我们发送的请求是否正常 2.查看响应信息,这里发现请求的地址有些异...
git报错 error: failed to push some refs to如何解决
问题背景 我在gitee新创建了一个代码仓库,然后想把我在本地的项目关联到远程仓库并推送上去。 根本原因 我们在创建仓库的时候,勾选了“使用Reamdme文件初始化这个仓库”这个操作初识了一个REA...