February 18, 2009

Making Variables:


----------------------------------------------------------------------------------
>>>the = 1
>>>if the:
... print("hello")
...
hello

----------------------------------------------------------------------------------
i defined the variable "the" to equal 1
>>> the = 1
then i created an "if" statement
if the:
then i defined what would happen "if" "the" equaled 1
print("hello")



No comments:

Post a Comment