Writing and running your first Python 3 script involves creating a text file with a .py extension and passing it to the Python interpreter.

Hello World Python Script

hello.pypython
#!/usr/bin/env python3
 
def main():
    print("Hello, World!")
    print("Welcome to Lynxbee Engineering Knowledge Platform.")
 
if __name__ == "__main__":
    main()