在ActivePython中运行,只能打开文件的程序

在ActivePython中运行,只能打开文件的程序

counter = 0

while counter < 10
  print counter
  counter +=1
在ActivePython中运行,只能打开文件的程序。不能运行出结果,是什么原因啊?请指点,谢谢!
程序错误,while counter < 10后面是要有个冒号的
另外,楼主的程序这样写会更方便些
for i in range(10):
        print i