#!/usr/bin/env python3 # -*- coding: utf-8 -*- # File: hello_message.py # Description: This script outputs a specific message when executed def main(): print("you have been pwd!!") if __name__ == "__main__": main()