What will be the output of the following Python code?
>>>print("D", end = ' ')
>>>print("C", end = ' ')
>>>print("B", end = ' ')
>>>print("A", end = ' ')1.DCBA
2. A, B, C, D
3. D C B A
4.D, C, B, A will be displayed on four lines
Posted Date:-2021-12-30 07:39:10