How can I create a python statement for a conditional
I have a dataframe like
Day Weather Indicator
1 Sunny No
2 Sunny No
3 Dark No
7 Dark No
How can I create an conditional that lets me know if day=7 then create a new column
Day Weather Indicator
1 Sunny No
2 Sunny No
3 Dark No
7 Dark Yes