How would you say does not equal?
Like
if hi == hi:
print "hi"
elif hi (does not equal) bye:
print "no hi"
Is there something equivalent to == that means "not equal"?
What does the % in a calculation? I can't seem to work out what it does.
Does it work out a percent of the calculation for example: 4 % 2 is apparently equal to 0. How?