Python - Variables and Dynamic Typing
The code below causes an error. What is the fix?
num = 'abc' converted = int(num) print(converted)
num = 'abc' converted = int(num) print(converted)
15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions