{% if 19<= now().strftime("%H") | int <24 or 7<= now().strftime("%H") | int <12 and now().strftime("%m")| int ==3 and now().strftime("%d")| int <=15 %}
着一句判断了以下当前电量处于那个阶梯比如我这里采暖季没有峰谷电价,19点至24点,7至12点19是谷电价“<= now().strftime("%H") | int <24 or 7<= now().strftime("%H") | int <12”修改这个部分就可以,谷电价是从11月15日以后开始3月15日结束修改以下五处
1: now().strftime("%m")| int ==3 and now().strftime("%d")| int <=15 #3月15日以前
2: now().strftime("%m")| int ==11 and now().strftime("%d")| int >=15 # 11月15日以前
3: now().strftime("%m")| int ==11 and now().strftime("%d")| int <15 # 11月15日以后
4: now().strftime("%m")| int ==3 and now().strftime("%d")| int >15 #3月15日以后
5: now().strftime("%m")| int in [12,1,2] #采暖季月份不含开始月和结束月因为开始和结束都不是整月开始的,开始和结束月通过上面4处定义。