Python - Variables and Dynamic Typing
Given this code, what will be the output?
items = [1, 'two', 3.0, True] types = [type(i) for i in items] print(types)
items = [1, 'two', 3.0, True] types = [type(i) for i in items] print(types)
15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions