IDLE
.
def __init__(self, title, subtitle, author):
def get_title(self):
def get_subtitle(self):
def get_author(self):
def print_book(self):
subtitle
attribute
author
attribute
book = Book("Guns, Germs, and Steel", "The Fates of Human Societies", "Jared Diamond") print(book.get_title()) print(book.get_subtitle()) print(book.get_author()) book.print_book()
Guns, Germs, and Steel The Fates of Human Societies Jared Diamond Guns, Germs, and Steel: The Fates of Human Societies, Jared Diamond
Guns, Germs, and Steel The Fates of Human Societies Jared Diamond Guns, Germs, and Steel: The Fates of Human Societies, Jared Diamond
cd it117/hw/hw8
hw8.py
Guns, Germs, and Steel The Fates of Human Societies Jared Diamond Guns, Germs, and Steel: The Fates of Human Societies, Jared Diamond
Copyright © 2021 Glenn Hoffman. All rights reserved. May not be reproduced without permission.