+2 votes
in Class 12 by kratos

Write the output of the following Python program code:

Data = ['D', 'O' ',' ',' I' , 't' , ' @' , ' 1' , '2 ' , ' 3' , ' ', ' !']

1 Answer

+2 votes
by kratos
 
Best answer

The output is:

['d', 'o', 'I', 'i', 't', '@', '@', '1', '1', '2', '3', '!', '!']

...