随笔分类 -  Python BUG记录

该文章仅供自己在线查阅
摘要:# 常见问题 ## 1、查询执行命令的位置 方式1: ```python import os os.getcwd() ``` 方式2: ```python import os os.path.abspath('.') ``` 方式3: ```python import sys sys.path[0] 阅读全文
posted @ 2023-08-13 07:19 昵称已经被使用 阅读(20) 评论(0) 推荐(0)
摘要:# python 运行 execjs 出现错误 UnicodeEncodeError: 'gbk' codec can't encode character '\U0001f603' in position 75558: illegal multibyte sequence > 参考博客: > > 阅读全文
posted @ 2023-08-13 07:19 昵称已经被使用 阅读(327) 评论(0) 推荐(0)