上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 24 下一页
摘要: 第3关地址:http://www.pythonchallenge.com/pc/def/equality.html 提示:页面标题re,需要使用正则表达式 提示文字:One small letter, surrounded by EXACTLY three big bodyguards on eac 阅读全文
posted @ 2021-12-07 09:52 OTAKU_nicole 阅读(34) 评论(0) 推荐(0) 编辑
摘要: 第1关地址: 打开http://www.pythonchallenge.com/pc/def/274877906944.html后 跳转到http://www.pythonchallenge.com/pc/def/map.html 图片提示信息:K->M,O->Q,E->G 页面有一段看似混乱的文字 阅读全文
posted @ 2021-12-07 09:51 OTAKU_nicole 阅读(44) 评论(0) 推荐(0) 编辑
摘要: 挑战地址:http://www.pythonchallenge.com/ 点击:Click here to get challenged 进行挑战,一共0-33关。 官方答案:http://wiki.pythonchallenge.com/ 挑战地址:Level 0:http://www.pytho 阅读全文
posted @ 2021-12-07 09:51 OTAKU_nicole 阅读(35) 评论(0) 推荐(0) 编辑
摘要: 第0关地址:http://www.pythonchallenge.com/pc/def/0.html 页面提示信息:try to change the URL address. 图片信息:2的38次方 import math # 2的38次方 = 274877906944 print(math.po 阅读全文
posted @ 2021-12-07 09:51 OTAKU_nicole 阅读(27) 评论(0) 推荐(0) 编辑
摘要: 递归错误:超过最大递归深度解决方案:设置下最大次数 import sys sys.setrecursionlimit(1000000) 阅读全文
posted @ 2021-11-13 19:32 OTAKU_nicole 阅读(92) 评论(0) 推荐(0) 编辑
摘要: D:Day 每日历日 B:BusinessDay 每工作日 H:Hour 每小时 T/min:Minute 每分 S:Second 每秒 M:MonthEnd 每月最后一个日历日 BM:BusinessMonthEnd 每月最后一个工作日 MS:MonthBegin 每月第一个日历日 BMS:Bus 阅读全文
posted @ 2021-10-14 16:39 OTAKU_nicole 阅读(396) 评论(0) 推荐(0) 编辑
摘要: import datetime stamp = datetime.datetime(2021,9,1,15,23,56) print("%Y 4位数年:",stamp.strftime("%Y")) # %Y 4位数年: 2021 print("%y 2位数年:",stamp.strftime("% 阅读全文
posted @ 2021-09-10 16:39 OTAKU_nicole 阅读(725) 评论(0) 推荐(0) 编辑
摘要: import matplotlib.pyplot as plt import pandas as pd from pandas import DataFrame df = DataFrame([[1,5,3,4], [4,1,2,1], [2,2,3,4], [2,3,2,1], [1,3,4,2] 阅读全文
posted @ 2021-09-10 12:06 OTAKU_nicole 阅读(177) 评论(0) 推荐(0) 编辑
摘要: import datetime from dateutil.parser import parse import pandas as pd stamp = datetime.datetime(2021,9,10) print(stamp) # 2021-09-10 00:00:00 print(st 阅读全文
posted @ 2021-09-09 18:13 OTAKU_nicole 阅读(120) 评论(0) 推荐(0) 编辑
摘要: import datetime datetime.date(2021,12,1) # 2021-12-01 datetime.time(12,23,48,333) # 12:23:48.000333 datetime.datetime(2021,12,1,12,23,48,333) # 2021-1 阅读全文
posted @ 2021-09-09 17:22 OTAKU_nicole 阅读(199) 评论(0) 推荐(0) 编辑
上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 24 下一页