mix = [1, 'two', 3.0] print(type(mix[1]))
What will be the output of the following code?
B) <class 'str'>
<class 'str'>
A) <class 'int'>
<class 'int'>
C) <class 'float'>
<class 'float'>
D) <class 'list'>
<class 'list'>