Advertisement
Guest User

Untitled

a guest
May 1st, 2018
181
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.31 KB | None | 0 0
  1. """
  2. Author- u/Zer0897
  3. Version- 2018.5.1
  4.  
  5. This program prints the string "Hello, World!" to the console.
  6. """
  7.  
  8. """
  9. Params-
  10.    None
  11. Return-
  12.    None
  13. Function-
  14.    Outputs the string "Hello, World" to console.
  15. """
  16. def main():
  17.     print("Hello, World!")
  18.    
  19. if __name__ == "__main__":
  20.     main()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement