This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# import di classi esterne al mio file principale | |
from module import Book | |
from module import Dictionary | |
book = Book("Moby Dick", "Loomings. \ | |
Call me Ishmael. Some years ago—never mind how\ | |
long precisely...", 500) | |
book.read() | |
print("Implementation of special method __len__:") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import math # learn more: https://python.org/pypi/Math | |
class Email: | |
sender = "me" | |
destination = "other" | |
def send(self): | |
print("Sent!") | |
host = "host" | |
newMail = Email() | |
print(newMail.sender) |