which of these is not a legal numeric type in Python? Option a intersection b float option C decimal
Answers
Answered by
4
Explanation:
please mark as brainliest
Attachments:
Answered by
1
Intersection and decimal are not a legal numeric type in Python
Option (a) and (c)
Explanation:
In Python, the data type Number is used to store numeric type values. Python has four distinct numerical types:
- int - Integers are only positive or negative whole numbers.
- long - long integers are integers of infinite size.
- float - floats represent real numbers, but are written with decimal points.
- complex - complex numbers represented by the formula a + bJ, where a and b are floats, and J is the square root of -1. Complex numbers are used sparingly in Python.
To know more
What are data types in python and why are they important?
https://brainly.in/question/7663699
Explain data types in python
https://brainly.in/question/11409270
Similar questions