Python Online Compiler
Example: Hello World Program in Python
C
C++
C#
Java
Python
PHP
main.py
STDIN
Run
# It's the main function of the program def main(): # Step-1 Display a welcome message to the user print("PYTHON HELLO WORLD PROGRAM") # Step-2 Print the actual Hello World message print("HELLO, WORLD!") # Call the main() function to initialize the program main()
Output
Clear
ADVERTISEMENTS