How to define the variable my_int

When retying the code like shown, i get an error shown above.
my_int to the value 7
my_float to the value 1.23
my_bool to the value True

You have to use the assignment operator =!

Like So

Variable = 'entry' 
a = 1   # Int
b = False   #bool
c = 1.112   #Float

my_int=7
my_float=1.23
my_bool=True

When I type in my_bool = False, its showing as an error and says my_bool can only be true…why is that?