#!/usr/bin/env python # coding=utf-8 """ This is a document of the python module. """ def lang(): return "python" if __name__ == "__main__": print lang()