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
#!/usr/bin/env python3
def main():
print("Hello, World!")
print("Welcome to Lynxbee Engineering Knowledge Platform.")
if __name__ == "__main__":
main()
Comments and corrections