# Send message to console
class Sender:
def __init__(self, message):
self.message = message
def send(self):
print("\n" + self.message)
if __name__ == "__main__":
sender = Sender("Hello Python World!")
sender.send()
print("\nThat's all Folks!\n")
| Site Resources | Content |
|---|---|
| Python Repositories | Index of all the Python code repositories |
| Python Home Page | access to download, docs, Forums, ... |
| Python Tutorials - python.org | for developers new to Python |
| Python Tutorials - w3schools | interactive examples |
| Python Basics - RealPython | Summary of features with screenshots and examples - pdf |
|
Python Story Index at upper right on this page. |
Python ebook |
| Bites about Python features and code | Python Bites |
| Python Glossary | Definitions of common terms |
| Python Playground | online compiler |