Python
iningwei
这个作者很懒,什么都没留下…
展开
-
[Python]If this call came from a _pb2.py file, your generated code is out of date and must be regene
经分析,代码中确实使用了python的protobuf库,根据提示可知需要降低protobuf的版本。原创 2022-10-07 23:22:21 · 4551 阅读 · 1 评论 -
VSCode 的Python环境配置
安装python 官网https://www.python.org/downloads/下载python的exe安装包。 如上图,安装的时候切记勾选把Python加入PATH中。 同时上述红框处的python安装目录,也是后面配置VS Code插件的时候要用到的。 安装完成后,cmd进入命令行,输入python 说明安装完成(且PATH设置正确)。 安装Visual Studio Code P...原创 2019-01-24 23:19:15 · 650 阅读 · 0 评论 -
Python基础杂记
1:地板除 // 2:字符串不转义 r’xxxxxx’表示字符串xxxxxx不转义原创 2019-04-08 23:38:59 · 125 阅读 · 0 评论 -
Python汉诺塔问题
汉诺塔是递归最经典的应用。核心代码为: def hanluo(n,a,b,c): if n==1: print("%s----%s" % (a,c)) else: hanluo(n-1,a,c,b) hanluo(1,a,b,c) hanluo(n-1,b,a,c) hanluo(3,"a","b","c") 如何...原创 2019-04-21 22:48:33 · 381 阅读 · 0 评论 -
Python切片去除字符串前后的所有空格
def trim(s): if s=='' or s==None: return '' elif s[0]==' ': return trim(s[1:]) elif s[-1]==' ': return trim(s[:-1]) else: return s a=trim(" $ "...原创 2019-04-21 23:33:39 · 1314 阅读 · 0 评论 -
Python批量修改文件夹下文件的后缀
import os # 当前目录下所有文件 files = os.listdir(".") for fileName in files: portion = os.path.splitext(fileName) if portion[1] == ".atlas": newName = portion[0]+".atlas.txt" os.renam...原创 2019-05-29 12:07:27 · 983 阅读 · 0 评论 -
Win10 Cmd命令行运行py文件
前提是python环境配置完毕,这里不赘述 假设 py 文件名为 test.py cd到py文件所在的目录 然后执行:python test.py即可原创 2019-07-11 15:17:32 · 10165 阅读 · 4 评论