Frequently Asked Questions

Data Types

There are mainly 3 kinds of data

  1. String or text
  2. Numerical (integers,1,2,3) or (float 1.1,2.2,3.5)
  3. Boolean (True or False)
x = 1
y = 2.2
z = True 

x is integer, y is a float and z is a boolean.

# please Define 3 variables with the following names:
# my_integer, my_float, my_string and assign an integer, a float and a string to them respectively.