上一页 1 2 3 4 5 6 7 8 ··· 21 下一页
摘要: Python有好几种版本的解释器: CPython:官方版本的解释器。这个解释器是用C语言开发的,所以叫CPython。CPython是使用最广的Python解释器。我们通常说的、下载的、讨论的、使用的都是这个解释器。 Ipython:基于CPython之上的一个交互式解释器,在交互方式上有所增强, 阅读全文
posted @ 2022-11-21 23:37 腹肌猿 阅读(774) 评论(0) 推荐(0) 编辑
摘要: 海象运算符是python3.8更新之后推出的一个全新的语法 一、海象运算符定义 海象运算符之所以叫这个名字是因为这个符号就像是一个海象逆时针90°倒过来一样,符号为一个冒号接着一个等号,是:=这样的。 而它的语法为(variable_name := expression or value),看起来很 阅读全文
posted @ 2022-11-20 15:02 腹肌猿 阅读(1654) 评论(0) 推荐(0) 编辑
摘要: python有两个魔法方法__getattr__和__getattribute__,都是用来获取对象属性,但很容易混淆 class Parent(object): def __init__(self): pass def __getattr__(self, item): print ("This i 阅读全文
posted @ 2022-11-16 21:20 腹肌猿 阅读(51) 评论(0) 推荐(0) 编辑
摘要: calc.c#include <stdio.h> #include <Python.h> int add(int x, int y){ // C 函数 return x + y; } static PyObject *calc_add(PyObject *self, PyObject *args){ 阅读全文
posted @ 2022-11-14 14:25 腹肌猿 阅读(120) 评论(0) 推荐(0) 编辑
摘要: pycharm在run file in console时会一直右下角会一直卡在connecting to console, 仔细查阅会发现左边还有文件报错. 找到这个_compat.py并修改 大概在101行,把这些全部注释掉 if PY3: new_code = types.CodeType(in 阅读全文
posted @ 2022-08-10 00:33 腹肌猿 阅读(518) 评论(0) 推荐(0) 编辑
摘要: django在处理post请求时会报错403 Forbidden 如何解决? 1. 在html页面form标签中添加 {% csrf_token %} 1.1 在用ajax发送post请求时参考 django post请求 - 有腹肌的猿 - 博客园 (cnblogs.com) 2.注释中间件 'd 阅读全文
posted @ 2022-06-07 22:13 腹肌猿 阅读(134) 评论(0) 推荐(0) 编辑
摘要: 在Pycharm中进入File-->Settings-->Editor-->Code Style-->File Types中选择Python Stub中: 也可能你的pycharm是这个路径: 将'5'里边的.pyi remove即可 将上图中移除内容区域中清空即可,这样就可以解决问题。 参考:关于 阅读全文
posted @ 2022-05-22 00:47 腹肌猿 阅读(524) 评论(0) 推荐(1) 编辑
摘要: 分为三种情况: 一: 还未将变更从工作区加入到暂存区,即未执行git add 命令前,如: 此时可以使用git checkout命令来撤销修改,如: git checkout -- rainbow.txt start.txt git checkout -- * git checkout -- *.t 阅读全文
posted @ 2022-05-12 13:29 腹肌猿 阅读(8327) 评论(0) 推荐(0) 编辑
摘要: 最近在用python ctypes调用C写的api报错OSError: [WinError 193] %1 不是有效的 Win32 应用程序。 这是因为调用的dll和python版本位数不一致导致的; gcc是mingw32的,生成的dll也就是32位的,但python是64的,所以会报错 如何解决 阅读全文
posted @ 2022-05-01 17:46 腹肌猿 阅读(2213) 评论(0) 推荐(0) 编辑
摘要: JS在使用JSON.parse时报错如下: Uncaught SyntaxError: Unexpected token ' in JSON at position 1 at JSON.parse (<anonymous>) at <anonymous>:1:6 只需要将大括号边上换成单引号即可 阅读全文
posted @ 2022-04-29 00:13 腹肌猿 阅读(673) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 ··· 21 下一页