my df:
No A B C D
1 1 1 0 1
2 1 1 1 0
3 1 0 1 1
4 1 1 1 1
I would like to perform A or B or C or D and write the result in a column.
No A B C D Result
1 1 1 0 1 1
2 1 1 1 0 1
3 1 0 1 1 1
4 1 1 1 1 1
...
so the idea is, the result is '1' even if there is one '1' present either in A,B,C or D.