Python - Variables and Dynamic Typing
What will this code print?
value = '123' value = int(value) print(type(value))
value = '123' value = int(value) print(type(value))
15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions