cross out the variable names that are not in Python with suitable reason Abc#d,12abc,$abc,abc_12,float,for
Answers
Answered by
1
Answer:
Abc#d,12abc,$abc,or can't be use as variable in python
Explanation:
Abc#d has # sign python will take 'd' as a comment and not a variable.
12abc can't be taken as constant cannot come first in variables
$abc is not acceptable as special sign could not be used in variable
Or is not acceptable as it is a keyword which is reserved in python.
Similar questions