I have one column df with mix of positive and negative number, as mentioned below:
Value
100
564
-789
3637
-999
I want to make a new df by adding the number 3600 to the ONLY negative value and my new df should have values like:
Value
100
564
2811
3637
2601
Please help me with the python code for this.