#!/usr/bin/python
import time
a = 0
if a == 5:
print"Congrats you hit five!"
while a <10:
a = a + 1
print a
time.sleep(.5)
So my program counts to ten no problem.. But it never display the text when a == 5. Any ideas? This is my first attempts at python.