会员
周边
众包
新闻
博问
闪存
赞助商
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
OTAKU_nicole
博客园
首页
新随笔
联系
订阅
管理
上一页
1
2
3
4
5
6
7
8
9
10
···
24
下一页
2022年6月10日
获取DataFrame随机行数据
摘要: random_index = random.randint(0, df.shape[0]) # 获取随机行 print(df.iloc[random_index]) # 获取随机行数据
阅读全文
posted @ 2022-06-10 14:21 OTAKU_nicole
阅读(146)
评论(0)
推荐(0)
编辑
获取DataFrame的行数和列数
摘要: df.shape[0] # 获取行数 df.shape[1] # 获取列数
阅读全文
posted @ 2022-06-10 14:20 OTAKU_nicole
阅读(155)
评论(0)
推荐(0)
编辑
2022年6月8日
ValueError: Sample larger than population or is negative
摘要: import random import string tempId = ''.join(random.sample(string.digits, 11)) print(tempId) 报错:ValueError: Sample larger than population or is negati
阅读全文
posted @ 2022-06-08 14:33 OTAKU_nicole
阅读(585)
评论(0)
推荐(0)
编辑
2022年5月24日
python生成随机字符串
摘要: import random import string print(string.digits) # 数字 print(string.ascii_letters) # 大小写 print(string.ascii_lowercase) # 小写 print(string.ascii_uppercas
阅读全文
posted @ 2022-05-24 15:53 OTAKU_nicole
阅读(91)
评论(0)
推荐(0)
编辑
2022年5月20日
ImportError: cannot import name 'TouchActions' from 'selenium.webdriver'
摘要: 回退selenium版本 pip install selenium==3.141.0
阅读全文
posted @ 2022-05-20 19:38 OTAKU_nicole
阅读(722)
评论(0)
推荐(0)
编辑
2022年5月18日
比较两个dataframe是否相同
摘要: import pandas as pd from pandas.testing import assert_frame_equal df1 = pd.DataFrame({'a': [1, 2], 'b': [3, 4]}) df2 = pd.DataFrame({'a': [1, 2], 'b':
阅读全文
posted @ 2022-05-18 19:05 OTAKU_nicole
阅读(640)
评论(0)
推荐(0)
编辑
2022年5月12日
python获取本周日期范围
摘要: import datetime today = datetime.date.today() # 周一为第一天 week_start = today - datetime.timedelta(days=today.weekday()) week_end = today + datetime.timed
阅读全文
posted @ 2022-05-12 18:37 OTAKU_nicole
阅读(600)
评论(0)
推荐(0)
编辑
2022年2月15日
selenium.common.exceptions.MoveTargetOutOfBoundsException: Message: move target out of bounds
摘要: 关于ActionChains(driver).move_by_offset(x,y)时,move target out of bounds的问题 move_by_offset()中使用坐标都是针对上一步的计算的,若不想计算,可使用reset_actions() 重置为(0,0)。 action =
阅读全文
posted @ 2022-02-15 17:03 OTAKU_nicole
阅读(2432)
评论(0)
推荐(0)
编辑
2022年1月7日
element click intercepted
摘要: driver.find_element_by_css_selector(".ui-btn-primary").click() 确定了定位没有问题,但是运行的时候点不到,报错信息是"error":"element click intercepted","message":"element click
阅读全文
posted @ 2022-01-07 10:14 OTAKU_nicole
阅读(531)
评论(0)
推荐(0)
编辑
2021年12月7日
pythonchallenge Level 32
摘要: 第32关地址:http://www.pythonchallenge.com/pc/rock/arecibo.html 用户名:repeat 密码:switch 是个nonograms游戏 查看源码: 得到 warmup.txt 打开:http://www.pythonchallenge.com/pc
阅读全文
posted @ 2021-12-07 10:09 OTAKU_nicole
阅读(87)
评论(0)
推荐(0)
编辑
上一页
1
2
3
4
5
6
7
8
9
10
···
24
下一页
公告