
python
00的小尾巴
好好学习,天天向上
展开
-
将时间格式化--pd.to_datetime()
将时间格式化--pd.to_datetime()原创 2023-03-27 10:29:31 · 903 阅读 · 0 评论 -
python安装xgboost报错
python安装xgboost报错原创 2023-08-07 09:56:08 · 1368 阅读 · 0 评论 -
python实现z-score标准化和0-1标准化
python实现函数标准化原创 2023-04-01 17:09:25 · 12720 阅读 · 0 评论 -
python中进制转换问题
进制转换原创 2022-08-25 15:23:21 · 777 阅读 · 0 评论 -
Python中bisect的使用
原文参考bisect是python内置模块,用于的。思想还是。原创 2022-08-25 15:13:39 · 549 阅读 · 0 评论 -
字典的一些基本用法
字典的增删改以及排序原创 2022-08-25 11:25:55 · 206 阅读 · 0 评论 -
string中和list中一些用法总结
find、strip、split原创 2022-08-24 14:40:16 · 198 阅读 · 0 评论 -
2-4 Python 访问MongoDB
目录2-4 Python 访问MongoDB第一关:python连接MongoDB写入数据第二关:检索文档第三关:更新数据2-4 Python 访问MongoDB第一关:python连接MongoDB写入数据1、导入pymongo库import pymongo2、使用MongoClient对象创建与数据库服务器的连接:(1)与数据库访问器连接client= pymongo.MongoClient(host='127.0.0.1',port=12717)原创 2022-04-21 09:00:00 · 3192 阅读 · 0 评论 -
python期末考试编程题练习
python期末考试一些基本练习原创 2022-04-06 19:15:00 · 6421 阅读 · 3 评论 -
贪吃蛇代码
贪吃蛇的代码:import pygame,sys,time,randomfrom pygame.locals import *# 定义颜色变量,颜色范围在0-255之间,由红、绿、蓝三个颜色组成的redColour = pygame.Color(255,0,0)blackColour = pygame.Color(0,0,0)Colour=pygame.Color(0,200,200)whiteColour = pygame.Color(255,255,255)greyColour =.原创 2022-04-06 14:42:09 · 9970 阅读 · 0 评论