One of your classmates just gave you the following code snippet:
aBook = Book() aBook.setTitle("The Time Machine") aBook.setAuthor("H. G. Wells")
For this code to be considered Pythonic… which of the following changes would need to be made?
Group of answer choices
The Book class would need to be replaced with a dictionary
A semicolon would need to be added to the end of each line
The line "aBook = Book()" would need to be rewritten as "aBook = new Book()"
All function, method, and variables would need to be changed from camel case to snake case