find error a= input (" enter a number ") Print ( a in [ 10,20,30,40 ] )
Answers
Answered by
0
Answer:
Your program:
________________________
a= input (" enter a number ")
Print ( a in [ 10,20,30,40 ] )
________________________
Error:
"Print" is not any inbuild function but "print" is since python is case sensitive.
Similar questions