#!/usr/bin/env python # -*- coding: utf-8 -*- # --------------------- # Title: Hello World # Version: 1.0.0 # Usage: python helloworld.py # --------------------- import sys, time def main(name='World'): sys.stdout.write('Hello %s!n' % name) time.sleep(1) sys.stdout.write('Thanks for the click!') if __name__ == '__main__': main()