python
coreyC
一句话怎么能够形容完一个人呢?
展开
-
SettingWithCopyWarning:A value is trying to be set on a copy of a slice from
SettingWithCopyWarning:A value is trying to be set on a copy of a slice from a DataFrame.Try using .loc[row_indexer,col_indexer] = value instead See the caveats in the documentation: http://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#retu原创 2023-05-30 11:11:25 · 380 阅读 · 0 评论 -
python 语言中pandans 的reset_index() 函数作用
此时可以看出,在数据列表中 多出一行 index 这也就是原来的索引行。这使得原有的数据 行 缺失,导致数据 行 的数据索引不再是连续的。在进行实际的数据操作时,通常会用pandans 对数据进行清洗。drop=True,默认 False。如果不想保存此行, 可以添加参数。原创 2023-05-30 11:12:12 · 272 阅读 · 0 评论 -
django.db.utils.OperationalError: (1060, “Duplicate column name ‘xxx‘“)
这个时候的解决办法是 删除掉所有的migrations 下面除了init 文件的所有文件。在django 的model中进行数据库字段的添加时,如果出现。出错的原因是你在model里面添加的字段 数据库中已经存在。然后去数据库中删除掉对应的字段即可。xxx代表你的字段名字。原创 2023-03-21 17:12:13 · 811 阅读 · 0 评论 -
django存储时间到数据库不一致问题
再进行django开发过程中,存储到数据库时间与当前时间不一致问题。当两个地方都设置好了,此时存储到数据库的时间即为正确时间。在 settings.py 文件中 修改。可以采用的model 设置可以是。首选需要对当前时区进行设置。然后还有一个非常重要的一点。原创 2023-03-21 09:43:24 · 586 阅读 · 0 评论 -
Strings must be encoded before hashing
发现采用 其他语言中已经集成的 md5 函数是不可以直接使用的。然后在调用时也不是直接调用,相当于需要在其他语言中进行实例化。在使用python 进行 登录密码加密时。此时就可以正常进行加密。原创 2023-03-21 09:18:27 · 3522 阅读 · 0 评论 -
‘latin-1‘ codec can‘t encode characters in position 206-207: ordinal not in range(256)
UnicodeEncodeError: 'latin-1' codec can't encode characters in position 206-207: ordinal not in range(256)原创 2023-03-20 16:28:54 · 289 阅读 · 0 评论 -
安装anaconda出现This Python interpreter is in a conda environment, but the environment has not been acti
安装anaconda 后在命令行中出现This Python interpreter is in a conda environment, but the environment has not been activated. Libraries may fail to load. To activate this environment please see https://co...原创 2019-09-02 11:27:04 · 10023 阅读 · 3 评论