Advertisement
Guest User

Untitled

a guest
Jun 28th, 2017
67
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.  
  5. class HelloWorld(object):
  6. greetings = "Hola Mundo"
  7.  
  8. def __init__(self):
  9. pass
  10.  
  11. def print(self):
  12. print (self.greetings)
  13.  
  14. obj = HelloWorld()
  15. obj.print()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement