摘要: 使用.json作为后缀名的配置文件,在python中读取,如下 datafile.json文件: { "name" : "szeto", "password" : "abc123", "hobby" : ["drawing","running","study"] } python代码: 1 impo 阅读全文
posted @ 2022-07-17 19:25 司徒韵然 阅读(716) 评论(0) 推荐(0)
摘要: excel是常用的处理数据的工具,那么怎样把python中的pandas库中DataFrame格式的数据保存到excel表格呢?代码如下。 1 import pandas as pd 2 df1=pd.DataFrame({'Data1':[1,2,3,4,5]}) 3 df2=pd.DataFra 阅读全文
posted @ 2022-07-17 18:59 司徒韵然 阅读(3242) 评论(0) 推荐(0)
摘要: python calendar库monthrange函数可以返回指定月份的最后一天 1 import calendar 2 lastDay = calendar.monthrange(2022,2)[1] 3 #返回28 4 lastDay2 = calendar.monthrange(2024,2 阅读全文
posted @ 2022-07-17 18:44 司徒韵然 阅读(733) 评论(0) 推荐(0)