hello.py
#!/usr/local/bin/python3.4 count=0 while(count<9): print('the count is:',count) count=count+1; print('good bye!')
运行:./hello.py