7. Identify the types of data from the following set of data

‘Roshan’ : String

u’Roshan’ : String

False : Boolean

‘False’ : String

[‘R’, ‘o’, ‘s’, ‘h’, ‘a’, ‘n’, ] : List

(‘R’,’o’,’s’,’h’, ‘a’,’n’) : Tuple

{‘R’ : 1, ’ o’ : 2, ‘s’ : 3, ‘h’ : 4 ‘a’ : 5, ‘n’ : 6} : Dictionary

(2.0-j) : NameError, j is not defined

12 : Integer

12.0 : Float

0.0 : Float

0 : Integer

3j : Complex type

6+2.3j : Complex type

True : Boolean

“True” : String