Coder Social home page Coder Social logo

python-p3-quiz-class-attributes-and-class-methods's People

Contributors

linda-seiter avatar lizbur10 avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

python-p3-quiz-class-attributes-and-class-methods's Issues

Transferring issue from incorrect repo

Canvas Link

https://learning.flatironschool.com/courses/6559/quizzes/47505

Concern

Question 6
1 / 1 pts
Consider the following code:

class Book:

genres = []

def init(self, title, author = "", page_count = 0):
self.title = title
self.author = author
self.page_count = page_count

def genre(self, genre):
return GENRE

Every time a genre is added to a Book object, we want to store that genre in the class variable named genres. The code above doesn't currently do this. Select the code snippet that does.

class Book:
genres = []

def init(self, title, author = "", page_count = 0):
self.title = title
self.author = author
self.page_count = page_count

def genre(cls, genre):
return cls.genres.append(genre)

Wow! Nailed it!! By calling cls.genres.append adding the genre to genres, we achieve exactly what we want.

class Book:
genres = []

def init(self, title, author = "", page_count = 0):
self.title = title
self.author = author
self.page_count = page_count

def genre(cls, genre):
return genres.append(genre)
3. I don't know.

The only problem is that you need https://github.com/classmethod just above the method; otherwise cls is just a normal parameter.

Additional Context

This issue was originally posted by @ckelly38 here: learn-co-curriculum/phase-3-quiz-class-variables-and-methods#3

Suggested Changes

The only problem is that you need https://github.com/classmethod just above the method; otherwise cls is just a normal parameter. So add https://github.com/classmethod above each of the definitions for the genre method.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.