Python 制作日程日历

Python making a schedule calendar

在 Python 中有没有编写一个程序来编写一个包含日程表的文本文件的程序?如果您是 运行,并且睡在:2020 年 1 月 11 日,我希望文本文件写入:

2020 年 1 月 11 日

运行

睡觉

但是如果用户说另一个日期,我希望文本文件写入另一个日期的信息,等等。

您好假设您有一个多维数据数组,您可以使用以下方法访问每个元素。

例如:

    l = numpy.array([["2020-01-10",20],["2020-01-12",30]])
    for i in l:
       if i[0] = "2020-01-10":
           with open("Output.txt", "w") as text_file:
              text_file.write("Value %s" % i[1])

或尝试使用 pandas 将所有数据获取到 pandas 数据框并查询如下

data = (df['date'] > '2000-6-1') & (df['date'] <= '2000-6-10')
print(df.loc[data])