I have the following data frame. How do I convert the week numbers to months. I don't want a date(mm-dd-yyyy). I am thinking of writing a loop but any better suggestions are welcomed.
    Week product  quantity
0    1    coke       1.5
1    3    fanta      1.7
2    7    coke       3.6
3    23   sprite     2.4
4    26   pepsi      2.9 
This is the result i'd like to achieve.
   Week product  quantity  Month
0    1    coke       1.5   January
1    3    fanta      1.7   January
2    7    coke       3.6   February
3    10   sprite     2.4   March
4    13   pepsi      2.9   April