Sunday, August 2, 2020

what is data type in python

Python Numbers

There are three numeric types in Python:

  • int
  • float
  • complex
x = 1    # int
y = 2.8  # float
z = 1j   # complex

Int

Int, or integer, is a whole number, positive or negative, without decimals, of unlimited length.

x = 1
y = 
35656222554887711
z = -
3255522

print(type(x))
print(type(y))
print(type(z))

 

Float

Float, or "floating point number" is a number, positive or negative, containing one or more decimals.

x = 1.10
y = 
1.0
z = -
35.59

print(type(x))
print(type(y))
print(type(z))

Random Number

Python does not have a random() function to make a random number, but Python has a built-in module called random that can be used to make random numbers:

import random

print(random.randrange(110))


No comments:

Post a Comment