Advertisement
Guest User

Untitled

a guest
Jun 28th, 2017
506
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. #!/usr/bin/env python3
  2. # -*- coding: utf-8 -*-
  3. """Programa que imprime en pantalla el mensaje Hola Mundo"""
  4. __author__ = 'Gonzalo Chacaltana'
  5. __email__ = "gchacaltanab@outlook.com"
  6.  
  7. class HelloWorld(object):
  8. def __init__(self):
  9. print ("Hola Mundo")
  10.  
  11. obj = HelloWorld()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement