Computer Science, asked by rawatdevesh05639, 1 day ago

Write the output of the following: >>>a = input("Enter any String") Enter any String : Practice >>>list(a)​

Answers

Answered by sushant8a
0

>>> a = input (" Enter any string : ")

Enter any string : Practice

>>> list(a)

['P', 'r', 'a', 'c', 't', 'i', 'c', 'e']

Mark my answer as brainliest...

Similar questions