Answer:
The expression in python is: x.isdigit()
Explanation:
Given
Character variable x
Required
Expression that evaluates if x is decimal or not
The expression in python is: x.isdigit()
If x is digit 0 - 9, x.isdigit() will equal True
Otherwise, it will equal False