asked 124k views
5 votes
Data type of variable a1 can be checked using: Answer choices Select only one option data(a1) type(a1) datatype(a1) None of the above​

1 Answer

2 votes

Step-by-step explanation:

The correct way to check the data type of a variable in many programming languages, including Python, is by using the `type(a1)` function. So, the correct option is:

- `type(a1)`

answered
User Sbozzie
by
7.9k points