Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8642529
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 12, 20262026-06-12T11:48:00+00:00 2026-06-12T11:48:00+00:00

I’m told to Define a new class, Track, that has an artist (a string),

  • 0

I’m told to

Define a new class, Track, that has an artist (a string), a title
(also a string), and an album (see below).

  1. Has a method __init__(self, artist, title, album=None). The arguments artist and and title are strings and album is an Album
    object (see below)
  2. Has a method __str__(self) that returns a reasonable string representation of this track
  3. Has a method set_album(self, album) that sets this track’s album to album

This is my first time working with classes, and I was wondering if someone can explain the difference between using strings and objects in Python. I read up about __str__ also, but I’m not exactly sure how it works. It says the “the string returned by __str__ is meant for the user of an application to see” but I never see the return value for my inputs. Can someone explain the use of __str__ please?

I’m not sure if I followed the guideline correctly either, if someone could confirm what I did is correct, that would be great.

class Track:
    def __init__(self, artist, title, album=None):
        self.artist = str(artist)
        self.title = str(title)
        self.album = album

    def __str__(self):
        return self.artist + " " + self.title + " " + self.album

    def set_album(self, album):
        self.album = album

Track = Track("Andy", "Me", "Self named")
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-12T11:48:01+00:00Added an answer on June 12, 2026 at 11:48 am

    Your class is good for me but if you really want the attributes be strings you should consider use @property decorator and make propper setters and getters.
    Example below:

    class Track:
        def __init__(self, artist, title, album=None):
            self._artist = str(artist)
            self._title = str(title)
            self._album = album
    
        def __str__(self):
            return self.artist + " " + self.title + " " + self.album
        #example for artist
        @property
        def artist(self):
            return self._artist
        @artist.setter
        def artist(self, artist):
            if artist != type("string"):#ensure that value is of string type.
                raise ValueError
            else:
                self._artist = artist
        #this way you could properly make setters and getter for your attributes
        #same ofr the other stuff
    
    Track = Track("Andy", "Me", "Self named")
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I've got a string that has curly quotes in it. I'd like to replace
I'm parsing an RSS feed that has an ’ in it. SimpleXML turns this
That's pretty much it. I'm using Nokogiri to scrape a web page what has
I want to count how many characters a certain string has in PHP, but
I have a string like this: La Torre Eiffel paragonata all’Everest What PHP function
I am doing a simple coin flipping experiment for class that involves flipping a
Does anyone know how can I replace this 2 symbol below from the string
link Im having trouble converting the html entites into html characters, (&# 8217;) i
For some reason, after submitting a string like this Jack’s Spindle from a text
Basically, what I'm trying to create is a page of div tags, each has

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.